How to check host updates on windows
3:25 PM
This document applies to all windows servers and clients
* for checking the update
Go to start > CMD > run the following command " wmic qfe list"
** gives you the complete list of installed update on the servers
*******************************************************************************
If you need a script then find it below
*******************************************************************************
@echo on
wmic /node: Server name qfe GET description,FixComments,hotfixid,installedby,installedon > %temp%\UpdateList.txt
notepad %temp%\UpdateList.txt
*******************************************************************************
note if you need any other output format then replace the blue marked files to the HTML|CSV
* for checking the update
** gives you the complete list of installed update on the servers
*******************************************************************************
If you need a script then find it below
*******************************************************************************
@echo on
wmic /node: Server name qfe GET description,FixComments,hotfixid,installedby,installedon > %temp%\UpdateList.txt
notepad %temp%\UpdateList.txt
*******************************************************************************
note if you need any other output format then replace the blue marked files to the HTML|CSV
0 comments