Skip to main content

Service Display Monitor: Kiosk Setup

Written by Ryley White

This guide outlines how to configure a Windows computer to automatically sign in with a dedicated Kiosk user and launch a Google Chrome browser in full-screen mode for the Service Display Monitor (SDM).


Before You Start

Before you begin, ensure the following:

  • You have administrator access to the Windows computer

  • Google Chrome is installed

  • You have the SDM URL for the location or display

  • You have a dedicated Windows kiosk user account, or permission to create one

Note: Do not use a shared administrator account for kiosk mode. Use a dedicated standard Windows user account.

Proceed through the steps below to configure a Kiosk user for the SDM.


Create a dedicated Windows Kiosk user

To create a Windows Kiosk user:

  1. Open Computer Management as an administrator.

  2. Go to Local Users and Groups > Users.

  3. Create a new user for SDM kiosk mode.

    • Recommended username: sdm-kiosk

  4. Set a password for the user.

  5. Configure the account so that:

    • The account is enabled.

    • The password does not expire.

    • The user cannot change the password.

  6. Make sure the user is a member of the Users group only.

  7. Confirm the user is not a member of the Administrators group.

Enable automatic sign-in

Next, configure Windows to automatically sign in using the dedicated kiosk user:

  1. Open Registry Editor as an administrator.

  2. Go to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon

  3. Add or update the following values:

    1. NameTypeValue: AutoAdminLogon

    2. String: 1DefaultUserName

    3. String: sdm-kioskDefaultPassword

    4. String: The kiosk user password DefaultDomainName

    5. String: The computer name

Note: Automatic sign-in stores the kiosk user password in Windows. Use a dedicated kiosk account with limited permissions.

Create a Google Chrome launcher

Create a launcher that opens Google Chrome in full-screen mode after Windows signs in:

  1. Create this folder: C:\ProgramData\Solink\SDM

  2. In that folder, create a file named: Launch-Chrome.cmd

  3. Add the following content to the file:

    @echo off setlocal EnableExtensions set "CHROME="  if exist "%ProgramFiles%\Google\Chrome\Application\chrome.exe" set "CHROME=%ProgramFiles%\Google\Chrome\Application\chrome.exe" if not defined CHROME if exist "%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe" set "CHROME=%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe" if not defined CHROME if exist "%LocalAppData%\Google\Chrome\Application\chrome.exe" set "CHROME=%LocalAppData%\Google\Chrome\Application\chrome.exe"  if not defined CHROME exit /b 0  timeout /t 30 /nobreak >nul  tasklist /fi "imagename eq chrome.exe" | find /i "chrome.exe" >nul if not errorlevel 1 exit /b 0  start "" "%CHROME%" --start-fullscreen

  4. This launcher waits 30 seconds after sign-in, checks whether Chrome is already running, and then opens Chrome in full-screen mode.

  5. Start Chrome automatically after sign-in.

  6. Add the Chrome launcher to Windows startup.

  7. Open Registry Editor as an administrator.

  8. Go to: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run

  9. Create a new String Value named: Solink SDM Chrome

  10. Set the value to: "C:\ProgramData\Solink\SDM\Launch-Chrome.cmd"

Disable sleep while plugged in

To keep the display available, disable sleep and display timeout while the computer is connected to AC power:

  1. Open Command Prompt as an administrator.

  2. Run the following command:

    powercfg /change standby-timeout-ac 0 powercfg /change monitor-timeout-ac 0

  3. Restart the computer.

After restart:

  1. Windows should automatically sign in using the Kiosk user.

  2. Google Chrome should open automatically in full-screen mode.

  3. Sign in to Service Display Monitor (SDM).

  4. Set Google Chrome to open the correct SDM URL on startup.

  5. In the Chrome startup settings, choose "Open a specific page or set of pages".

  6. Do not use "Continue where you left off".

  7. Confirm kiosk mode is working.

After setup, confirm that:

  • The computer automatically signs in after restart

  • Chrome opens automatically

  • Chrome opens in full-screen mode

  • The correct SDM page loads

  • The computer does not go to sleep while plugged in

Attachment icon
Did this answer your question?