Easy To Read Windows Update Log

6. February 2009

Have you ever had a Windows Update run on your computer, and soon after your favorite application starts acting funny, or just plain freezes entirely? If you run Windows I can just about guarantee this has happened to you.

A quick solution to this is to remove the patches/updates Windows just dropped on you. To find which updates were just installed on your windows machine you can look in the Windows update log located at %windir%\Windowsupdate.log and try to decipher WTF it means, or you can use this script and generate an easy-to-read one:

--------------------------------------------------------------------

dir c:\windows\*.log /o:d | findstr /i /r /c:q......\.log /c:kb......\.log /c:q......uninst\.log /c:kb......uninst\.log > c:\TimeLine.log
pause

-------------------------------------------------------------------

Just copy the text between the dashed lines above into a new notepad file and save it as "UpdateLog.bat" somewhere on your machine. Then double-click the file to run it, and viola! - you'll have an easy to read log located at c:\timeline.log containing all the information you'll need to find and kill the windows update that is messing with your application.

The file will have the date & time the update was installed, and the name of the update.  Just find the newest ones that were installed (it will be ordered oldest to newest and top to bottom), open up Add/Remove Programs, and uninstall the offending "patch" with the matching kb number.

Microsoft

Comments

2/7/2009 11:31:44 PM #
Interesting idea. I have indeed had that happen many times. I recently switche to ubuntu in my laptop and love it. No more nonsense.

Will be saving a copy of this script. Thanks.
web
2/9/2009 2:12:43 AM #
this problems is common to vista, updating becomes a nightmare.
3/13/2009 11:57:25 PM #
I have also noticed Vista having huge problmes with updating causing mistakes and generating odd code. Thanks for the great tip!
3/30/2009 12:17:42 AM #
Firefox is the way to go it seems-so much less mess than with Vista. Thanks for going over this.
4/28/2009 12:36:53 PM #
Even with updates for Vista, it still has so many problems, which is really a shame.
Comments are closed