; Hotfixes.kix, Version 1.00 for Windows NT 4 / 2000 ; Displays a list of hotfixes and their descriptions ; ; Usage: KIX32 HOTFIXES.KIX ; ; Written by Rob van der Woude ; http://www.robvanderwoude.com $Tab = Chr(9) $Index = 0 $Key = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Hotfix\" ?" Hotfixes installed on this PC:" ? :Loop1 $KeyName = EnumKey( $Key, $Index ) If @ERROR = 0 $Msg = " $KeyName" $FixDescr = ReadValue( "$Key$KeyName", "Fix Description" ) If @ERROR = 0 $Msg = "$Msg$Tab$FixDescr" EndIf ? $Msg $Index = $Index + 1 GoTo Loop1 EndIf ?