This script will Block IE7 Update. (VBScript)
| 'Block IE7 Update Dim WSHShell, MyBox, Title Message = "This script will Block IE7 Update." & vbCr & vbCr Message = Message & "Continue?" X = MsgBox(Message, vbYesNo + vbQuestion, "Paul's XP and Vista Tweaks") If X = 6 Then Set WSHShell = WScript.CreateObject("WScript.Shell") WshShell.RegWrite "HKLM\Software\Microsoft\Internet Explorer\Setup\7.0\DoNotAllowIE70", 1, "REG_DWORD" Title = "IE7 Update is now Blocked." & vbCr & vbCr Title = Title & "Ths script was downloaded from www.paulsxp.com." MyBox = MsgBox(Title,64,"Finished") End If |