Instead of opening several windows, here’s an easy way to get a list of installed QFE’s. simply open a command prompt and type:
WMIC QFE
or
WMIC QFE get caption,hotfixid,installedon
or if you are looking for a specific update, enter the following command:
WMIC QFE | find “958559”
where 958559 relates to the MS KB number. If the QFE is installed, it will be listed.
Related posts:
How come you didn’t post the PowerShell method? 🙂 Hehe …
——–
Start –> Run –> “powershell”
“gwmi win32_quickfixengineering | ? { $_.HotfixId -eq ‘KB958559’ }”
——–
Cheers,
Trevor Sullivan