10 lines
189 B
Batchfile
10 lines
189 B
Batchfile
timeout /t 5
|
|
REM test for chrome
|
|
where /q chrome.exe
|
|
IF ERRORLEVEL 0 (
|
|
chrome -kiosk
|
|
EXIT /B
|
|
)
|
|
REM cant set this fullscreen
|
|
start microsoft-edge:https://geekprank.com/win10-update/
|