Last active
April 20, 2025 23:21
-
-
Save KokoseiJ/6ede3f0d94604e16a104de881af3d4bf to your computer and use it in GitHub Desktop.
Enable System Lockdown features for Arcade Embedded Systems
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
net user administrator /active:yes | |
dism /online /enable-feature /featureName:Client-EmbeddedLogon /all | |
bcdedit.exe -set {globalsettings} advancedoptions false | |
bcdedit.exe -set {globalsettings} optionsedit false | |
bcdedit.exe -set {globalsettings} bootuxdisabled on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows Embedded\EmbeddedLogon] | |
"BrandingNeutral"=dword:00000001 | |
"HideAutoLogonUI"=dword:00000001 | |
"HideFirstLogonAnimation"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Authentication\LogonUI] | |
"AnimationDisabled"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization] | |
"NoLockScreen"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment