I’m working on a Windows 10 POS Kiosk setup where I need to open my own ASP.NET local website (running on localhost:5000
) in kiosk mode. The goal is to ensure that users can only access this web page and cannot change the URL or exit the browser.
Specifically, I want the following:
- The website should open in full-screen mode (similar to pressing F11)
- It should auto-start after a Windows restart or log-in
- Users should not be able to access other applications or the desktop
- The kiosk account should remain logged in without requiring a password
I would like to create a batch file or use C# code to automate this setup process. Any guidance on how to achieve this, including scripts or settings adjustments, would be greatly appreciated!