Open tabs in internet explorer with cmd

前端 未结 4 607
醉酒成梦
醉酒成梦 2021-01-16 14:51

I want to make a cmd batch file that opens 3 tabs in internet explorer window Doesnt matter to me if there is already internet explorer window open or not I have this comman

4条回答
  •  执笔经年
    2021-01-16 15:45

    START "" "C:\Program Files (x86)\Internet Explorer\iexplore.exe" "http://marathon:7040/console/jsp/login/j_security_check?j_username=wc&j_password=12345"
    

    ?

    /d switch is for the starting directory (which I think is not relevant in your case).The first parameter is the title which in your case will be "C:\Program Files (x86)\Internet Explorer\iexplore.exe" and for the link left the default program as the open program is not really pointed.

提交回复
热议问题