Listing Hotfixes
I'm using the following command to list hotfixes installed on a windows 2003 server.
WMIC qfe get hotfixid
The command works and I get a listing. There are however a boat load of results that say "File 1". I've googled this and all I seem to find is how to eliminate those results which all fine and dandy. My question is what in the blazes do those
results (File 1) mean or represent?
May 4th, 2011 11:23am
I'm using the following command to list hotfixes installed on a windows 2003 server.
WMIC qfe get hotfixid
The command works and I get a listing. There are however a boat load of results that say "File 1". I've googled this and all I seem to find is how to eliminate those results which all fine and dandy. My question is what in the blazes do those
results (File 1) mean or represent?
use Powershell;
Get-ChildItem -Path “HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\HotFix”
Free Windows Admin Tool Kit Click here and download it now
May 6th, 2011 12:37am


