Tuesday, October 21, 2014

date windows updates were installed

You have a need to present the dates of installed updates in Windows Servers. WSUS gives you which patches, but not when.

2003:

if you haven't used pstools, please download and read and use. http://technet.microsoft.com/en-us/sysinternals/bb896649.aspx

Use psinfo:

psinfo -h \\remotecomputer > d:\path\server.txt

the > sends the output to a file you define.
you can omit \\remotecomputer if you are running locally


2008:

use this wmic script

wmic qfe list full /format:htable > d:\path\server.htm

the > sends the output to a file you define.

No comments:

Post a Comment