Log in
Connect as an Operator
Sign in to manage scoreboards.
Configure Kiosk
https://test.graty.be/monitor?name=Kiosk-DFC708.
Ubuntu / Debian Kiosk
Run this command on a fresh Ubuntu 24.04+ or Debian 12+ kiosk (x86 / UEFI hardware).
Make sure image/splash.png is reachable on this server before running it.
curl -sSL https://test.graty.be/kiosk/ubuntu_setup.sh | bash -s -- 'https://test.graty.be' 'Kiosk-DFC708'
Raspberry Pi Kiosk
Run this command on a fresh Raspberry Pi OS Bookworm or newer.
Make sure image/splash.png is reachable on this server before running it.
curl -sSL https://test.graty.be/kiosk/pi_setup.sh | bash -s -- 'https://test.graty.be' 'Kiosk-DFC708'
Windows 10 / 11 Pro, Enterprise, Education
Open PowerShell as Administrator on the Windows kiosk PC and run this command.
It uses the built-in Windows Assigned Access single-app kiosk mode: a dedicated
local user is created and locked to Microsoft Edge in --kiosk at the monitor URL
(no Task Manager, Win-key, Alt+Tab, Settings or Explorer). Auto-logon and a never-sleep power
plan are configured automatically. To undo, re-run with -Reset.
Set-ExecutionPolicy -Scope Process Bypass -Force; & ([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing -Uri 'https://test.graty.be/kiosk/windows-pro_setup.ps1').Content)) -SardauscoreUrl 'https://test.graty.be' -MonitorName 'Kiosk-DFC708'
Windows 10 / 11 Home
Open PowerShell as Administrator on the Windows Home kiosk PC and run this command.
Windows Home does not support Assigned Access, so this script only sets Edge --kiosk
autostart and a never-sleep power plan. For a true locked-down kiosk, prefer Pro / Enterprise / Education.
Set-ExecutionPolicy -Scope Process Bypass -Force; & ([scriptblock]::Create((Invoke-WebRequest -UseBasicParsing -Uri 'https://test.graty.be/kiosk/windows-home_setup.ps1').Content)) -SardauscoreUrl 'https://test.graty.be' -MonitorName 'Kiosk-DFC708'