vote up 1 vote down star

Hello all,

I have created a small command that will let me launch Internet Explorer. However, I wish to close the small command prompt that shows up when I launch IE. How can I do this? This is my current code:

"%ProgramFiles%\Internet
Explorer\iexplore.exe"
http://localhost/test.html
PAUSE

I am guessing if I take out the Pause. It will close the CMD box upon closing IE??

Also is there another command that I can use to simply create a command that will let me add something to the Menu with a small icon, which in turn runs the above. Is this complicated? Any tutorials I can use?

Thanks all

flag

To what menu do you want to add the command? To the context menu of Explorer? – divo Oct 5 at 22:37

4 Answers

vote up 3 vote down check

Use the start command:

start "title" "%ProgramFiles%\Internet Explorer\iexplore.exe" http://www.example.com
link|flag
I am impressed! I did not know that, Thank you! – Abs Oct 5 at 22:38
Interestingly, this appears to launch the default browser, as it launches FireFox for me :) – Russ Cam Oct 5 at 23:06
why "title"?? use start "" "foo.exe" – Anders Oct 6 at 2:04
It is for no reason, just to make the sample more explicit. I thought people might wonder more about an empty string as the first parameter. But it seems I've been wrong ;-) – divo Oct 6 at 8:31
@Russ: Did you omit the first parameter that is specifying the title? If you do start.exe will use the executable path as the title and then start the URL which gets opened by the default browser. – divo Oct 6 at 8:33
vote up 0 vote down
@echo off
start "" "%ProgramFiles%\Internet Explorer\iexplore.exe" "http://www.example.com"
exit /b

But you really should not force IE, but use the default browser:

@echo off
start http://www.example.com
exit /b

exit /b does not work on win9x IIRC, so if you need to support every version of windows and close the terminal window if the user double clicks your batch file, go with:

@echo off
start http://www.example.com
cls
link|flag
"But you really should not force IE, but use the default browser": Maybe the requirement is to force the use of IE for a certain URL? I guess the OP will know better ;-) – divo Oct 6 at 8:37
vote up 0 vote down

You have to add 'start' in front of every program you launch, elsewhere your script is going to wait until it's finished.

link|flag
This just spawned another CMD prompt! – Abs Oct 5 at 22:36
well just put it in front of your IE, that is what I wanted to say with programm – svens Oct 5 at 22:38
vote up 2 vote down

you need this on the end

&& exit

For example

"%ProgramFiles%\Internet Explorer\iexplore.exe" http://google.co.uk && exit
link|flag
Strange I have placed EXIT at the end but it only closes after I close IE. I was hoping to close it when it spawns off the IE process, possible? – Abs Oct 5 at 22:30
Just tried that same thing happens. I am on Vista by the way if that helps! I thought this was going to be a piece of cake but I haven't had my cake yet! I appreciate any more help. – Abs Oct 5 at 22:34
If I put an exit at the top, it obviously closes the CMD! – Abs Oct 5 at 22:35
No problem. I managed to get it working with the start title thing as suggested. +1 for continued help. Out of interest what OS are you running for the above to work. I am worried my current solution may not work on most Windows versions! – Abs Oct 5 at 22:40
Windows XP. But this should work in the CMD shell in Vista and 7 and right back to 3.1, I believe. – Russ Cam Oct 5 at 22:42
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.