Discovering the methods and properties available to a WMI class is very straight forward with PowerShell. Back to Get-Member. We can use it like this
## Listing 6.14
Get-WmiObject -Class Win32_Service | Get-Member -MemberType property
## Listing 6.15
Get-WmiObject -Class Win32_Service | Get-Member -MemberType method
These two scripts will display the properties and methods of the Win32_Service class respectively. Any other class can be substituted as required.
Share this post : | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
Technorati Tags: PowerShell,WMI
under: PowerShell and WMI