This script will UnBlock IE7 Update. (VBScript)

'UnBlock IE7 Update
On Error Resume Next
Set PmShell = WScript.CreateObject("WScript.Shell")
Message = "This script will Unblock the IE7 Update." & vbCr
Message = Message & "This action will DELETE a Registry Key." & vbCr & vbCr
Message = Message & "Continue?"

X = MsgBox(Message, vbYesNo + vbQuestion, "Paul's XP and Vista Tweaks")
If X = 6 Then

PmShell.RegDelete "HKLM\Software\Microsoft\Internet Explorer\Setup\7.0\"
MsgBox "Done!" & vbCrLf & "You can now Update to IE7." & vbcr & vbcr &_
"This script was downloaded from www.paulsxp.com.", 48, "Registry Key Deleted!"
End If

Download


Back to Line 48