A little AutoIt script to remove the RunOnce from Internet Explorer.
; Microsoft Internet Explorer 7 ; Version: 7.0.5730.11CO ; Update Versions: 0 ; Script Creation Date: June 20, 2007 ;Based on the REG script. ;Windows Registry Editor Version 5.00 ;[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main] ;"RunOnceComplete"=dword:00000001 ;"RunOnceHasShown"=dword:00000001 ;Places the input box in the top left corner displaying the characters as they ;are typed. #NoTrayIcon MsgBox ( 49 , "Internet Explorer 7 Remove RunOnce Message v1.0" , "This utility will remove the RunOnce Message by adding two " & @ LF & _ "registry keys to: " & @ LF & @ LF & _ "[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main] " & @ LF & @ LF & _ " RunOnceComplete=dword:00000001" & @ LF & _ " RunOnceHasShown=dword:00000001" & @ LF & @ LF & @ LF & _ "Press OK to continue or CANCEL to cancel." ) RegWrite ( "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" , "RunOnceComplete" , "REG_DWORD" , "00000001" ) RegWrite ( "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" , "RunOnceHasShown" , "REG_DWORD" , "00000001" ) |