List Installed hotfixes on Windows systems
This script has been tested on Windows XP/7/8/2003/2008/2012.
' List Installed Hot Fixes strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\" & strComputer & "rootcimv2") Set colQuickFixes = objWMIService.ExecQuery _ ("Select * from Win32_QuickFixEngineering") Wscript.Echo "Computer|Description|Hotfix ID|InstallDate|InstalledBy" For Each objQuickFix in colQuickFixes WScript.Echo objQuickFix.CSName & "|" & objQuickFix.Description & "|" & objQuickFix.HotFixID & "|" & objQuickFix.InstallDate & "|" & objQuickFix.InstalledBy Next
Latest posts by wvsandwijk (see all)
- [PS] How to validate VMWare ESX Certificates - September 7, 2018
- PoSH-Git : unable to start ssh-agent service, error :1058 - July 22, 2018
- [PS] Speedup VMWare PowerShell module - June 11, 2018