I am creating a web page that runs on IE10. I need to create a batch file to launch webstie in kiosk mode. I used the following code in batch file
Start "" iexplore.exe -k "file:///C:/MySite/index.html"
This opens my page in IE kiosk mode. but my requirement is user only use Alt+F4 to close the site. all other functional keys should be restricted(Such as "Windows+D","Alt+Tab"). Is it possible in batch file? how to achieve this?