Start page through command line

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I make IE start up with a specific page on my computer through a cmd
command.

It's actually part of a .bat file?

Any suggestions welcome :)
 
Kernel Sanders said:
How can I make IE start up with a specific page on my computer through a cmd
command.
It's actually part of a .bat file?

Any of these should work:

"C:\Program Files\Internet Explorer\IEXPLORE.EXE" "C:\Path to File\Something.htm"

start "Window Title" "C:\Path to File\Something.htm"

start iexplore.exe "C:\Path to File\Something.htm"


Note that the second command actually starts the default browser, whihch
may or may not be IE,
 
Back
Top