Launching a website via windows commandline

前端 未结 7 936
栀梦
栀梦 2020-12-24 04:50

I have a program launching a website via the following command.

cmd \"start /max http://url.com\"

When launching a website via this method

相关标签:
7条回答
  • 2020-12-24 05:41

    You can just use

    explorer "https://google.com"
    

    Which will launch your default browser and navigate to that site.

    And on Mac I've using

    open "https://google.com"
    
    0 讨论(0)
提交回复
热议问题