Carl Stalhood

Saturday 7 March 2015

Get hotfix list

wmic qfe list full /format:htable >C:\Temp\hotfixes.htm                                                                                                                                                                                                                                                                                                                                 wmic /output:stdout qfe get hotfixid | find "KB99999".                                                                                                                                                                                                                                                                                                                                                          Get-WmiObject -query 'select * from win32_quickfixengineering' | foreach {$_.hotfixid}                                                                                                                                 It is also possible to use Microsoft MBSA (Microsoft Baseline Security Analyzer).
http://technet.microsoft.com/en-us/security/cc184924 (English)

No comments:

Post a Comment