05-12-2023 05:16 AM - edited 05-12-2023 05:17 AM
Hey folks,
It's been a while and finally I got a little breathing room to share my Friday joy (again) 😁.
Kiosk Mode on Windows - on a large scale? and you looking for a way to do it without paying for Intune?
This post will get you covered, please read on.
I will be focusing mainly for Single App Kiosk mode this time - since it's the most popular use case among the others (like, multi-app Kiosk mode, for another day 😉).
Now you have set up the foundation, let's dive into the "easy part".
Get-StartApps
# An example to set Calculator as the Kiosk App.
$KioskUser = "kiosk.johnny” # Use your Kiosk username here.
$KioskApp = "Microsoft.WindowsCalculator_8wekyb3d8bbwe!App"
Set-AssignedAccess -AppUserModelId $KioskApp -UserName $KioskUser
Clear-AssignedAccess
This option probably will be the most popular one - technically, you can setup Kiosk mode for any application. I will use Slack as the demoing example here.
First, use a Windows machine to install Window Configuration Designer aka Windows IDC:
Now, let's create a custom PPKG:
Install-ProvisioningPackage -QuietInstall -ForceInstall -PackagePath "C:\Windows\Temp\Slack.ppkg"
Remove-ProvisioningPackage 28ea1c67-c4cf-410b-91c3-61939fced606
Done!
Thanks for reading, happy Friday! 😎
10-21-2024 04:49 AM
Hello shawnsong,
Thank you for your Guide, It was really helpful !
Following your recommendation, we have successfully set up Kiosk mode on our device using Option 2—deploying the application via a provisioning package.
However, during our testing, we noticed an unexpected behavior: after applying the command, the user session configured for Kiosk mode works as expected, with the application launching automatically. However, when switching to another user session on the same device, it also opens in Kiosk mode or with Shell Replacement, which is not the desired behavior.
Do you have a solution for applying the InstallPackage command to only a specific user session, so that Kiosk mode is activated for one user while allowing other sessions to open in Explorer mode? Or use other cmd from Windows to apply the Kiosk mode which the desired behavior ?
We are on a windows 10 pro, 10 entreprise, 11 pro and 11 entreprise 🙂
New to the site? Take a look at these additional resources:
Ready to join us? You can register here.