![]() Loading |
| VBScript |
| JavaScript |
| Powershell |
Search Options: List Installed or Advertised Components and Applications
|
||
|
' Description: Returns a list of all Windows Installer components installed or advertised on a computer.
On Error Resume Next strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery _ ("Select * from Win32_ApplicationService") For Each objItem in colItems Wscript.Echo "Name: " & objItem.Name Wscript.Echo "Start Mode: " & objItem.StartMode Wscript.Echo Next | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: | ||