'xp_kb823980_fix.vbs - Prevents Windows Update from prompting you to install 'Hotfix KB823980, after you have already installed it. '© Doug Knox - 8/23/2003 Set WshShell = CreateObject("WScript.Shell") WshShell.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\KB823980\","Needed to prevent Win Update from prompting for this install" Set WshShell = Nothing Message = "Windows Update should no longer prompt" & vbCR Message = Message & "for Hotfix KB823980 to be installed." & vbCR & vbCR Message = Message & "© 2003 - Doug Knox and Kelly Theriot " MsgBox Message, vbOkOnly, "Finished!"