Running latest Chrome for Windows in kiosk mode

I've tried these instructions to run Chrome in kiosk mode:

  1. Open up Chrome's settings.
  2. Under "Users" click "Add new user."
  3. Give the new profile a name and picture. Make sure "Create a desktop shortcut for this user" is checked. Click "Create."
  4. Right-click the newly-created shortcut and select "Properties."
  5. In the "Target" field, add "--kiosk" (no quotes) to the end.
  6. Click "Apply."

However, it doesn't seem to work for me; I still see tabs at the top of browser when I launch.

How can I launch Chrome in kiosk mode on Windows 8?


You should just add a starting page like this:

--kiosk "http://www.google.com"

if that doesn't work try this:

--chrome-frame  --kiosk "http://www.google.com"

I create a shortcut on my desktop for chrome and then right click and choose properties.. in the "target" box, I add this:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"  --kiosk --kiosk-printing "https://google.com/"

here is the breakdown:

--kiosk 

(makes it full screen on load)

--kiosk-printing

(makes the system auto print the default print setting when you click print - no asking the customer to click the print button)

and the URL at the end is the homepage onload you want to launch with everytime

pops ups MUST be "allowed" using a normal browser window first (otherwise you don't see the error) so be sure to force the website to pop before going full kiosk mode. Clicking allow always will solve this future issue.

and the biggest problem is that you MUST force chrome to NOT run in the background, otherwise the full screen never kicks in.

right-click the chrome icon in the systray (by the clock) and UNCHECK "allow chrome to run in the background"

and then to close the full screen (besides alt-f4) i use this close kiosk chrome plugin: https://chrome.google.com/webstore/detail/close-kiosk/dfbjahmenldfpkokepmfmkjkhdjelmkb

the call for this plugin to kick in from a button onclick is:

window.location.href = '/closekiosk';

I hope this helps... I use kiosks for all of my public functions and the web is so much better than a crappy app.. easily fixed and managed. good luck!


you MUST force chrome to NOT run in the background, otherwise the full screen never kicks in.

right-click the chrome icon in the systray (by the clock) and UNCHECK "allow chrome to run in the background"

then the full screen shortcuts will work!


Anyone looking to do this on a local HTML file, create a shortcut to your Chrome executable, right click it, select "Properties" and then make sure the target field looks like this (for example):

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk "file:///C:/Users/JohnDoe/Desktop/MyHTMLFile.HTML"

The executable must be in double quotes, as well as the file path.