Page 1 of 1

to open IE

Posted: 14 Jun 2010 21:47
by locbtran
I'm new to batch file. I would like to create a batch file that opens IE with a URL of snooples.com. I sure this is possible cause I've seen it when I was in school but that was a long time ago.

tks

Re: to open IE

Posted: 14 Jun 2010 22:09
by amel27
via default browser/New Tab:

Code: Select all

start "Snooples.com" "http://snooples.com/"
via internet explorer/New Window:

Code: Select all

start "Snooples.com" iexplore.exe "http://snooples.com/"