I have a touchscreen application optimised and running in a Chrome kiosk mode. It runs totally offline and due to some updates to Chrome breaking the application I\'ve had to lo
We had same problem, but one of my colleagues got the answer (so far OK).
We are using Windows so batch file in startup for start chrome with incognito kiosk and update interval.
cd C:\Program Files (x86)\Google\Chrome\Application
start chrome.exe --incognito --window-position=0,0 --kiosk --check-for-update-interval=604800 "facebook.com"
exit
--check-for-update-interval= 7days we are restarting the PC every day so update never tiger.
This command line switch is specified here.