Open a Web Page in a Windows Batch FIle

前端 未结 5 1673
刺人心
刺人心 2020-12-12 14:48

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, cal

5条回答
  •  借酒劲吻你
    2020-12-12 15:21

    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.

提交回复
热议问题