Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List All the Properties for a WMI ClassContent of List All the Properties for a WMI Class.vbsMD5 Hash: 61FEB20C81DF3E48AC50BEBA4486A7CF |
||
' Description: Lists the properties for a specified WMI class.
strComputer = "." strNameSpace = "root\cimv2" strClass = "Win32_Service" Set objClass = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _ strComputer & "\" & strNameSpace & ":" & strClass) WScript.Echo strClass & " Class Properties" WScript.Echo "------------------------------" For Each objClassProperty In objClass.Properties_ WScript.Echo objClassProperty.Name Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |