Skip to content

Instantly share code, notes, and snippets.

@mneil
Created February 15, 2016 19:56
Show Gist options
  • Save mneil/368eef352e2e6c748094 to your computer and use it in GitHub Desktop.
Save mneil/368eef352e2e6c748094 to your computer and use it in GitHub Desktop.
Kill chrome and open a new page in kiosk mode
taskkill /F /IM Chrome.exe /T
### Open a local index.html file in the same directory as this batch file
# start chrome --kiosk --profile-directory=Default --app="%~dp0/index.html"
### Open a website URL
start chrome --kiosk --profile-directory=Default --app="http://google.com"
@mneil
Copy link
Author

mneil commented May 4, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment