|
Answer» I'm trying to figure out how to use DOS CODING to open up Internet Explorer and make it go to a specific site. I know to make it go to IE, I NEED something lie:
echo off START xxx/xxx/xxx/xxx/IE.exe
But how do I get it to go to a specific website?if you want to use DOS to start IE and then go to specific website and then do nothing else, you might as WELL go to your "Start" button and launch it. Its faster that way. BUT if you want to go to the website and download stuff and maybe you want to schedule it, then use vbscript for native or use a tool such as wget/curl to do it.The web page is entered an an argument for IEXPLORE.EXE. Use the following link to Google as an example:
Code: [SELECT](path to ie directory)\IEXPLORE.EXE http://www.google.com Interesting, would you be able to link in multiple sites? Like using && and just link in more?
|