to open IE

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
locbtran
Posts: 3
Joined: 06 Mar 2009 22:52

to open IE

#1 Post by locbtran » 14 Jun 2010 21:47

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

amel27
Expert
Posts: 177
Joined: 04 Jun 2010 20:05
Location: Russia

Re: to open IE

#2 Post by amel27 » 14 Jun 2010 22:09

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/"

Post Reply