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
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.