ghacks Technology News

Create A List Of All Installed Windows Hotfixes


Windows hotfixes usually solve errors and problems after installing them. It happened in the past however that they did produce additional errors that could bring a computer system to a standstill. It is therefor handy to produce a list of all installed Windows Hotfixes in the way that they have been installed on a computer system.

This can be achieved with a small batch file that will create a list of all installed Windows hotfixes and the date and time that they have been installed on the system. The information is taken directly from the KBxxxxxx.log files that are created for each individual hotfix that is installed in Windows.

Those log files are located in the Windows directory and it would take some time to check them manually to build the list. Here is a screenshot of the output which is saved in a text document in the root directory of the main hard drive.

knowledgebase

The code which has to be added in one line is the following:

dir %windir%\*.log /o:d | findstr /i /r /c:q......\.log /c:kb......\.log /c:q......uninst\.log /c:kb......uninst\.log > %systemdrive%\hotfixes.log

Some of you might prefer a direct download, just download the knowledgebase file and unpack it to the computer system. It contains the same code that is shown above.




Tags: , , , , , ,
Categories: Windows, software



Related posts:

List all installed Windows Updates
List all installed Windows Updates
List all installed multimedia codecs
Grab Text from all Files in a Directory
Display The Installed Codecs On A System

7 Responses to “Create A List Of All Installed Windows Hotfixes”

  1. Sparx says:

    If you’d prefer a searchable utility, try Nirsoft’s excellent WinUpdatesList.

    It also has command line switches to generate reports in TXT,XML or HTML formats.

    Plus, it’s freeware and stand-alone meaning no installation required. Another gem from NirSoft, IMHO.

Trackbacks/Pingbacks

  1. [...] | GHacks trackback ¿Recomendarías este post? Más noticias sobre: Windows, Truco, Sistemas [...]

  2. [...] | GHacks (¿Fue util la Información?) Categorias : Sistemas Operativos, Trucos, Windows Tags : [...]

  3. [...] la linea que he comentado más arriba y que automatizará el proceso aún más. Vía Genbeta, GHacks [...]

Leave a Reply   Subscribe To Comment Rss

© 2005-2009 Ghacks.net. All Rights Reserved. Privacy Policy - About Us