I have set up assigned access on windows 10. The breakout key is currently set to ctrl + alt + delete (the default). However it seems as though when this breakout key is used that the application exits? Is it possible to keep the application running i.e. essentially switch user instead of log off?
相关问题
- Why Isn't My Windows 10 PC Waking Up after a S
- How to prevent windows from accessing and detectin
- How does this JavaScript open Windows Settings in
- How to receive scriptNotify from html in appdata o
- How to open Solidworks, run macro, and close Solid
相关文章
- Python has stopped working
- Clear Back Stack Navigation Windows 10
- Where do Windows “Product ID” and “Device ID” valu
- Xamarin Android Player Error when attempting to fi
- How can I use 100% of VRAM on a secondary GPU from
- Android Studio cannot be initialized (0xc0000005)
- Where is gacutil.exe in Windows 10?
- How do I run the Visual Studio (2017) Installer?
You can set larger time-out period in registry
taken from Set up a kiosk on Windows 10
You can save application state in suspending event and restore this state later in resuming event, like it's recommended. That's not too difficult.
In declarations add:
And somewhere in class constructor after InitializeComponent();
Now you should realize events:
You can find in web more information about App lifecycle