At the bottom of this post, I have included another freebie that will launch Chrome into Kiosk Mode and disable the following input functions:

ALT + F4
CTRL + SHIFT + ESC
ALT + TAB
WINDOWS KEY
LEFT MOUSE
RIGHT MOUSE


You can use the following shortcut to re-enable the keys above:

CTRL+SHIFT+TAB

I would highly suggest using AutoHotKey, if you are interesting in doing something similar.

What is AutoHotKey?
AutoHotkey (AHK) is a free, open-source macro-creation and automation software for Windows that allows users to automate repetitive tasks. It is driven by a scripting language that was initially aimed at providing keyboard shortcuts, otherwise known as hotkeys, that over time evolved into a full-fledged scripting language.

You can find more information about AutoHotKey here.

AutoHotKey Sourcecode:

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
run, "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --kiosk "http://www.google.com"
rButton::return
!F4::return
^+esc::return
!TAB::return
LWin::return
RWin::return
^+TAB::Run, %comspec% /c taskkill /f /im kiosk.exe


Download Now

Enjoy!