This is my script
@echo off
start /d "C:\Program Files\Internet Explorer" IEXPLORE.EXE http://www.google.com?a=1&b=2
I modify coz I found out that %* would enable multiple parameters
@echo off
start /d "C:\Program Files\Internet Explorer" IEXPLORE.EXE http://www.google.com?a%*=1&b=2%*
or this
@echo off
start /d "C:\Program Files\Internet Explorer" IEXPLORE.EXE http://www.google.com?%*a=1&b=2%*
But neither works. What m i lacking?
start /d “C:\Program Files\Internet Explorer” IEXPLORE.EXE http://www.google.com?a=1^&b=2