I have created a simple batch file to open a targetted chrome link upon windows startup.
I need assistance in launching the program (in this case the Chrome Browser), but launch it into full-screen mode.
My batch file currenly:
@ECHO OFF
SET BROWSER=chrome.exe
SET WAIT_TIME=5
@ping 127.0.0.1 -n %WAIT_TIME% -w 1000 > nul
START %BROWSER% -new-tab "www.google.com"
pause`
Solution
On line 5 add -start-fullscreen
after %BROWSER%