Hello.
I need a bat file that opens a NEW Internet explorer window, and open a specific site - and then close the dos prombt again.
so far ive created this
@echo off
"%PROGRAMFILES%\Internet Explorer\IEXPLORE.EXE" http://www.google.com
exit
And it works, but the "exit" dosent exit the black dos prompt behind.
What am i doing wrong?
Internet Explorer
Moderator: DosItHelp
Re: Internet Explorer
It should. How are you launching it?
This should work to load the default browser too, and exit by itself.
This should work to load the default browser too, and exit by itself.
Code: Select all
@echo off
start "" http://www.google.com