With a quick edit to the registry key, you can set your app to Kiosk Mode which prevents users from signing out while still allowing them to switch between accounts that have already been logged in.
In this article, we'll show you how to enable and disable Kiosk Mode on both Windows and macOS.
Enable Kiosk Mode
Windows
- Open the Command Prompt.
- Copy and paste the following:
reg add "HKEY_CURRENT_USER\Software\Logos4" /v KioskMode /t REG_DWORD /d 1 /fand press Enter.
macOS
- With the Finder active, press Shift+Cmd+G to open the Go to Folder navigation.
- Enter
~/.mono/registry/CurrentUser/software/logos4/values.xmland press Enter. - Open the values.xml file.
- Click at the beginning of the final line, which shows
</values>, and press Enter to add a blank line. - On the blank line, copy and paste
<value name="KioskMode"type="int">1</value> - Press Cmd+S to save the file.
Disable Kiosk Mode
Windows
- Open the Command Prompt.
- Copy and paste the following:
reg add "HKEY_CURRENT_USER\Software\Logos4" /v KioskMode /t REG_DWORD /d 0 /fand press Enter.
macOS
- With the Finder active, press Shift+Cmd+G to open the Go to Folder navigation.
- Enter
~/.mono/registry/CurrentUser/software/logos4/values.xmland press Enter. - Open the values.xml file.
- Find the lines that show
<value name="KioskMode"type="int">1</value> - Replace the
1with a0. - Press Cmd+S to save the file.