问题
I want to create an app which will be deployed on tablets as a kiosk in a mall. I searched around for creating app with some restriction like it will be always open, only authenticated uses can close with swipe gesture or Alt+F4. I got one solution but it's related to Win 8.1 and I can't wait till that.
So what I want is the app will be always on. Normal users will use the app, they can't close it. App can be close by only authenticated users with password. Anybody have any ideas to do these things ?
PS : For those who don't know what is "Assigned Access", please see Windows 8.1 product guide and search for that term.
回答1:
This is not possible in Windows 8 by design. You will have to wait until 8.1 for the dedicated "kiosk mode."
回答2:
It's incomplete, but if you can't wait for 8.1 consider the following 2 setting to fake a kiosk mode.
1. Modify the user GPO for the Kiosk account. Change "User Config->Administrative Templates->System->Custom User interface" Enable the policy and put in the path to your application.
This will prevent the "desktop" from loading and replace explore.exe with your applications .exe
2. REG ADD "HKLM\SYSTEM\CurrentControlSet\Control\Keyboard Layout" /v 'Scancode Map' /t REG_BINARY /d "Make your binary change here" /f
This disables special keys like Windows key and remaps the Alt and Ctrl. Use Sharpkeys to define the binary http://sharpkeys.codeplex.com/
Good luck.
来源:https://stackoverflow.com/questions/18215525/is-assigned-access-windows-8-1-feature-possible-in-windows-8-app