- Community Home
- >
- Servers and Operating Systems
- >
- HPE ProLiant
- >
- ProLiant Servers (ML,DL,SL)
- >
- Tip - How to send an HP WBEM Provider Alert to SIM...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2014 08:39 PM - edited 09-20-2014 08:41 PM
09-20-2014 08:39 PM - edited 09-20-2014 08:41 PM
Tip - How to send an HP WBEM Provider Alert to SIM from command line
When your installing the HP SIM Agents, i.e. the WMI/WBEM Providers
You can manually send an Alert 'called an Indication in WBEM terms' from either the SMH homepage, or the StartMenu tool.
But if you would like to use "native" tools from the Windows command line perform the following from a DOS prompt:
C:\wmic /namespace:\\root\hpq Path HP_WinComputerSystem where Caption="target_name.tamu.edu" CALL SendTestIndication TestIndicationID=101
The "key" is knowing the Method is [Non-Static] which means you must provide an explicit reference to the Instance your calling the method on.
That is what the [ where Caption="target_name.tamu.edu" ] portion does, it selects only one Instance of the Class [ HP_WinComputerSystem ] to call the method on.
In this case its the Instance created when the Provider service hosting that Instance originally starts up.
I wrote about it on my home page.