I\'ve seen something like this:
start /d \"C:\\Program Files\\Internet Explorer (x86)\\IEXPLORE.EXE\" www.google.com
But this just opens a
You may use SendKeys directly in your Batch file, as shown in this or this or this answer; for example:
@if (@CodeSection == @Batch) @then
@echo off
rem Start default IE
start /d "C:\Program Files\Internet Explorer (x86)\IEXPLORE.EXE" www.google.com
:changeLoop
CScript //nologo //E:JScript "%~F0" "keys to change to first webpage"
timeout /T 10
CScript //nologo //E:JScript "%~F0" "keys to change to second webpage"
timeout /T 10
goto changeLoop
@end
WScript.CreateObject("WScript.Shell").SendKeys(WScript.Arguments(0));