Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Installed or Advertised Components and ApplicationsContent of List Installed or Advertised Components and Applications.vbsMD5 Hash: A34EF189C20DA488C05CA398AD9EA242 |
||
' 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 :: |