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
to open IE
Moderator: DosItHelp
Re: to open IE
via default browser/New Tab:via internet explorer/New Window:
Code: Select all
start "Snooples.com" "http://snooples.com/"
Code: Select all
start "Snooples.com" iexplore.exe "http://snooples.com/"