I have tried all the following and I just can\'t get Chrome to open in fullscreen with or without kiosk mode:
Run chrome in fullscreen mode on Windows
Which
for anyone here that want to open a new chrome window without url bar it is not called kiosk mode, it is called app mode. and the command to append to your chrome path is:
--app=https://google.com
In order for the target path:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk WEBSITE TO OPEN
to work, you need to quit all chrome processes, including background process. You can actually disallow chrome to run in background.
Related question
But, there is an alternative to using the above approach.
extensions
window of
chrome, click on details of Kiosk extension and click on create app shortcuts
button.close the browser and just try this way "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk
You can use the following code to open the Chrome browser in a full window or kiosk mode on Windows 7:
taskkill /IM chrome.exe
start chrome.exe --kiosk -tab "www.url.com"
Even if the chrome browser is closed down, all instances of Chrome.exe in the Windows Task Manager need to be manually closed. Even if testing when a PC is freshly turned on, I still need to close instances of Chrome.exe from the Windows Task Manager.
When all instances are closed, running a shortcut with the following target seems to work:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --chrome --fullscreen --kiosk
Does anyone know how to stop the instances of Chrome.exe in the Windows Task manager interfering?