Internet Explorer 10 Prompt for Reboot
Currently when i install IE10 on W7 i am using IE10-Windows6.1-x86-en-us.exe /passive /norestart /update-no
this works well and upgrades version 8 to 10. The issue is that a reboot is required for you to start using v10. I don't want to force a reboot but I don't see a was to Promptreboot in the available switches. Has anyone found a way to do this?
thanks
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
dugullett
11 years ago
If you cannot find a way in the command line you can always use AutoIT to create and exe that will prompt the user. Just add the exe to the end of your install.
http://www.autoitscript.com/site/autoit/downloads/
$answer = MsgBox(4, "IE10 Restart", "Your computer need to be restarted complete the IE 10 Install. Click yes to restart now or no to cancel.") If $answer = 7 Then Exit
EndIf
Shutdown(6)