![]() Loading |
| VBScript |
| JavaScript |
| Powershell |
Search Options: List Component Categories
|
||
|
' Description: Retrieves information about the COM class component categories (COM classes that share common functionalities) found on a computer.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_ComponentCategory") For Each objItem in colItems Wscript.Echo "Category ID: " & objItem.CategoryId Wscript.Echo "Name: " & objItem.Name Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: | ||