Reputation: 68750
I have a batch file that does a bunch of things and at the end needs to open up a web browser to a page. Is there a way to, in essence, call ShellExecute
on a http to open the web page?
Windows Command Prompt
Upvotes: 164
Views: 432922
Reputation: 109
To run from the default browser, use
start http://www.stackoverflow.com
Please make sure that the appropriate browser is set as the default in Control Panel → default program:
To launch a page from a specific browser, one can use
start "iexplore.exe" http://www.stackoverflow.com
start "chrome.exe" http://www.stackoverflow.com
start "firefox.exe" http://www.stackoverflow.com
Upvotes: 8
Reputation: 37
When you use the start command to a website, it will use the default browser by default, but if you want to use a specific browser, then use start iexplorer.exe www.website.com
Also, you cannot have http://
in the URL.
Upvotes: 2
Reputation: 39571
You can use the start command to do much the same thing as ShellExecute
. For example
start "" http://www.stackoverflow.com
This will launch whatever browser is the default browser, so it won't necessarily launch Internet Explorer.
Upvotes: 269
Reputation: 3270
start
did not work for me.
I used:
firefox http://www.stackoverflow.com
or
chrome http://www.stackoverflow.com
Obviously not great for distributing it, but if you're using it for a specific machine, it should work fine.
Upvotes: 0
Reputation: 57252
hh.exe
(help pages renderer) is capable of opening some simple webpages:
hh http://www.nissan.com
This will work even if browsing is blocked through:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer
Upvotes: 2
Reputation: 5524
Unfortunately, the best method to approach this is to use Internet Explorer as it's a browser that is guaranteed to be on Windows based machines. This will also bring compatibility of other users which might have alternative browsers such as Firefox, Chrome, Opera..etc,
start "iexplore.exe" http://www.website.com
Upvotes: 3