Search notes:

url.bat: Open an URL from cmd.exe

Using rundll32.exe, it's possible to open an URL in cmd.exe.
The following script, url.bat, does exactly that.
@c:\windows\system32\cmd.exe /c (rundll32 url.dll,FileProtocolHandler ^"%1^")
Github repository scripts-and-utilities, path: /url.bat

See also

get.vbs allows to GET a HTTP ressource from cmd.exe and print it to the console.

Index