How to creating multi app kiosk on windows 10 , Script for creating multi app kiosk on windows 10

0

 There are several libraries and tools available for creating a multi-app kiosk on Windows 10. Some popular options include:

  1. Assigned Access: This is a built-in feature in Windows 10 that allows you to create a kiosk mode for a single app. It can be configured through the Settings app or using the Windows Configuration Designer.

  2. Windows Kiosk mode: Windows Kiosk mode is similar to Assigned Access, but allows you to configure a kiosk mode for multiple apps. It can be configured through the Group Policy Editor or using the Windows Configuration Designer.

  3. Kiosk Simple: Kiosk Simple is a third-party software that allows you to create a kiosk mode for multiple apps, with the ability to configure which apps are allowed to run, as well as set time limits and other restrictions.

  4. KioWare: KioWare is another third-party software that allows you to create a kiosk mode for multiple apps, with advanced security features such as remote management, device lockdown and password protection.

  5. SOTI MobiControl: SOTI MobiControl is a mobile device management solution that allows you to create a kiosk mode for multiple apps, with the ability to configure which apps are allowed to run and set time limits and other restrictions.

Script for creating multi app kiosk on windows 10

It's important to note that some of these libraries and tools may require some technical expertise to set up and configure, and may require additional hardware or software to work properly.

Here is a sample script for creating a multi-app kiosk on Windows 10 using the Windows Kiosk mode:

  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

It's important to note that this script is just an example, and might not cover all possible scenarios. Moreover, some of these commands may require some technical expertise to set up and configure, and may require additional hardware or software to work properly.

Post a Comment

0Comments

"Please keep your comments respectful and on-topic."
"Your email address will not be published."
"HTML tags are not allowed in comments."
"Spam comments will be deleted."

Post a Comment (0)