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.

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.
Enjoyed the article?: Then sign-up for our free newsletter or RSS feed to kick off your day with the latest technology news and tips, or share the article with your friends and contacts on Facebook or Twitter.Related Articles:
List all installed Windows UpdatesList all installed Windows Updates
Create A Shortcut To All Installed Games In Windows
List all installed multimedia codecs
List of WordPress Plugins installed

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.