Category (Kategorie): Operating SystemDescription (Beschreibung): The Win32_QuickFixEngineering WMI class represents system-wide Quick Fix Engineering (QFE) or updates that have been applied to the current operating system.Availability (Verfügbarkeit):
Sample Code (Beispiel): strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_QuickFixEngineering")
For Each objItem in colItems
Wscript.Echo "Caption: " & objItem.Caption
Next
Links: Link zur Original-Microsoft-Dokumentation |