Checking Patch History on a Remote System
Posted by Rob on 8 February, 2009
1 comment so far
This item was filled under [ Patching, Workstation ]
So ya need to see what patches are applied to a few remote systems? Here’s a quick method using a VB script to do just that. The first batch file is just to get Script Zombie to execute the VBScript using cscript.
runPatchHist.cmd
@echo off
echo.
echo -Patch History for (%1)
echo.
cscript scripts\helpers\patchHistory.vbs %1
