这是我的剧本
@echo off
start /d "C:\Program Files\Internet Explorer" IEXPLORE.EXE http://www.google.com?a=1&b=2
我修改了因为我发现%*
会启用多个参数
@echo off
start /d "C:\Program Files\Internet Explorer" IEXPLORE.EXE http://www.google.com?a%*=1&b=2%*
或者
@echo off
start /d "C:\Program Files\Internet Explorer" IEXPLORE.EXE http://www.google.com?%*a=1&b=2%*
但两者都不起作用。我缺少什么?
答案 0 :(得分:1)
开始/ d" C:\ Program Files \ Internet Explorer" IEXPLORE.EXE http://www.google.com?a=1 ^& b = 2