Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

Multi App Kiosk Help

mooncha25

Recruit
Basic Member
Messages
3
Reaction score
0
Points
16
I need help creating multi app kiosk on windows 10? meron po ba easy method, for a library po
 
  1. Open the Group Policy Editor by pressing the Windows key + R, then typing "gpedit.msc" and pressing Enter.
  2. Navigate to Computer Configuration > Administrative Templates > Windows Components > Windows PowerShell.
  3. Locate the setting "Turn on Script Execution" and double-click on it.
  4. Select "Enabled" and select "Allow local scripts and remote signed scripts" from the dropdown menu.
  5. Press OK to save the changes.
  6. Open PowerShell as an administrator by pressing the Windows key + X and selecting Windows PowerShell (Admin)
  7. Run the following command to create a new kiosk user account:

net user KioskUser /add /active:yes

  1. Run the following command to set the KioskUser account as the kiosk account:

setx /M KIOSKUSER KioskUser

  1. Run the following command to set the apps that should be allowed to run in kiosk mode:

setx /M KIOSKAPPS "App1,App2,App3"

(Replace "App1,App2,App3" with the names of the apps you want to run in kiosk mode)

  1. Run the following command to set the KioskUser account as the default user:

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultUserName /t REG_SZ /d KioskUser /f

  1. Run the following command to set the KioskUser account as the default user at the next logon:

reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /t REG_SZ /d 1 /f

  1. Restart the computer, and the KioskUser account will log in automatically and the apps specified in the command will run in kiosk mode
some of these commands may require some technical expertise to set up and configure, and may require additional hardware or software to work properly.
 
Back
Top Bottom