From LedHed's Wiki
(Created page with "Check which updates are installed via command line (or PSExec) wmic qfe list brief /format:texttablewsys > "c:\temp\hotfix.txt" Category:Windows") |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
wmic qfe list brief /format:texttablewsys > "c:\temp\hotfix.txt" | wmic qfe list brief /format:texttablewsys > "c:\temp\hotfix.txt" | ||
+ | or | ||
+ | |||
+ | wmic qfe list brief /format:htable > "c:\temp\hotfix.html" | ||
+ | |||
+ | |||
+ | Alternatively you can use the netdiag tool in verbose mode | ||
+ | |||
+ | netdiag -v | ||
+ | |||
+ | or more specifically | ||
+ | |||
+ | netdiag -v | findstr "KB########" | ||
+ | Where KB####### represents the KB article number you're looking for | ||
[[Category:Windows]] | [[Category:Windows]] |
Latest revision as of 04:06, 22 March 2015
Check which updates are installed via command line (or PSExec)
wmic qfe list brief /format:texttablewsys > "c:\temp\hotfix.txt"
or
wmic qfe list brief /format:htable > "c:\temp\hotfix.html"
Alternatively you can use the netdiag tool in verbose mode
netdiag -v
or more specifically
netdiag -v | findstr "KB########"
Where KB####### represents the KB article number you're looking for