Last active
June 19, 2018 14:12
-
-
Save stripedpurple/50df39a8984565d9c0b985bda5d07494 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo Killing all chrome process | |
taskkill /F /IM chrome.exe | |
echo Waiting a few seconds before starting the Kiosk... | |
"C:\windows\system32\ping" -n 5 -w 2000 127.0.0.1 >NUL | |
REM Launching Chrome | |
start chrome.exe --incognito --kiosk --chrome "https://goldmedalcloud.net/board/kiosk/#!?locationId=philadelphia" --disable-pinch --overscroll-history-navigation=0 --disable-web-security --user-data-dir --test-type | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment