Cet article décrit une méthode pour disposer d’un poste Windows en mode Kioske (Démarrage sur une session)
Important: Cett méthode autorise quiconque à un accès a utiliser cette machine !
Cette manipulation utilise regedit
Lancer la commande suivante : Regedit.exe
Repérer HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
Choisir Nouveau -> Valeur chaine
Taper AutoAdminLogon
Double cliquer sur AutoAdminLogon.
Taper ‹ 1 ›
Editer DefaultUserName et saisir le compte à utiliser
Editer DefaultPassword et saisir le mot de passe associé
NB Si cette clé n’existe pas, il faut la créer (Chaine de caractère)
En cas d’utilisation d’un domaine éditer la valeur DefaultDomainName
Pour lancer directement beWeapon, remplacer la valeur de ‹ shell › par
Relancer le poste de travail
To set up a Windows 11 machine in kiosk mode and launch a specific app instead of explorer.exe after autologin, you have two main options:
Replace the Shell (explorer.exe) with Your App:
Edit the Windows Registry to set your application as the shell.
Path: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
Change the value of Shell from explorer.exe to the full path of your app (e.g., C:\Path\To\YourApp.exe).
Use Assigned Access (Windows Kiosk Mode):
Go to Settings → Accounts → Other users → Set up a kiosk.
Follow the wizard to select the user and the app to run in kiosk mode.
This is the recommended and supported way for UWP apps or Microsoft Edge, but not for arbitrary Win32 apps.
For a custom Win32 app:
The registry method is more flexible but less user-friendly.
Make sure your app can handle being the shell (e.g., provide a way to exit or restart).
Warning: Changing the shell can make the system hard to use if your app crashes or exits unexpectedly. Always test on a non-production machine first.
Would you like a step-by-step guide for the registry method, or do you want to use the built-in kiosk wizard?