Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Component CategoriesContent of List Component Categories.vbsMD5 Hash: D39E827FDD7A1D4E36FF8EB4A4F26297 |
||
' 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 :: |