I want to open a particular URL without directly opening the browser using only a batch file. I know I can use something like:
START www.google.com
But I want to open a URL without using a browser. Is this possible?
The reason is that I have to open like 30 URLs, and I don't want the user to have like 30 tabs opened on his/her pc.
You can use the HH command to open any website. Though it will not open the website in the browser, but this will open the website in an HTML help window. works great to just hit a website to log an IP or kick off a script.
If you start your web browser and frequently visit the same websites, you can create a batch file to open all of your favorite websites at once. Using a batch file will open the websites you choose in tabs using your default browser, and the steps are easy enough even for beginners.
Just create a batch file and save in the location where your html file is there. this anchor tag will execute the (test. bat) batch file. After clicking on the link <TEST>, you will get the window prompting to open/save/close, if you will click on open then batch file will be executed.
You can use Wget or cURL, see How to download files from command line in Windows like wget or curl.
You will then do e.g.:
wget www.google.com
If all you want is to request the URL and if it needs to be done from batch file, without anything outside of the OS, this can help you:
@if (@This==@IsBatch) @then @echo off rem **** batch zone ********************************************************* setlocal enableextensions disabledelayedexpansion rem The batch file will delegate all the work to the script engine if not "%~1"=="" ( wscript //E:JScript "%~dpnx0" %1 ) rem End of batch file area. Ensure the batch file ends execution rem before reaching the JavaScript zone exit /b @end // **** JavaScript zone ***************************************************** // Instantiate the needed component to make URL queries var http = WScript.CreateObject('Msxml2.XMLHTTP.6.0'); // Retrieve the URL parameter var url = WScript.Arguments.Item(0) // Make the request http.open("GET", url, false); http.send(); // All done. Exit WScript.Quit(0);
It is just a hybrid batch/JavaScript file and is saved as callurl.cmd
and called as callurl "http://www.google.es"
. It will do what you ask for. No error check, no post, just a skeleton.
If it is possible to use something outside of the OS, wget
or curl
are available as Windows executables and are the best options available.
If you are limited by some kind of security policy, you can get the Internet Information Services (IIS) 6.0 Resource Kit Tools. It includes tinyget
and wfetch
tools that can do what you need.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With