Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Classic COM ClassesContent of List Classic COM Classes.vbsMD5 Hash: 7845944931BA9ECC04D77DFE23B998C5 |
||
' Description: Retrieves information about all the “classic” COM classes installed on a computer.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("Select * from Win32_ClassicCOMClass") For Each objItem in colItems Wscript.Echo "Component ID: " & objItem.ComponentId Wscript.Echo "Description: " & objItem.Description Wscript.Echo "Name: " & objItem.Name Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |