We have a UWP app that runs on Windows Kiosk Assigned Access Mode. We want to turn off the screen during the night when no one is using the device.
We are encountering some difficulties. When we turn off the screen with command. The app is stopped, then the Kiosk mode/Windows will relaunch the app. We don't want that.
We try many solution like using
SendMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, MONITOR_OFF);
SetThreadExecutionState(ES_CONTINUOUS | ES_DISPLAY_REQUIRED);
But all the solutions we try when the screen is turn off our app is stopped
We want the app to continue running non-stop when the screen turns off. Has anyone had this problem before and found a solution? Thank you for your help