w10install/tools/autologon.ps1
Michael H.G. Schmidt 14394caa4d autologon changes
2023-02-01 21:35:19 +01:00

14 lines
492 B
PowerShell

# Activate Auto-Logon
$Username = Read-Host 'USER ? '
$Password = Read-Host 'PASSWORD ? '
$RegistryPath = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon'
Set-ItemProperty $RegistryPath 'AutoAdminLogon' -Value "1" -Type String
Set-ItemProperty $RegistryPath 'DefaultUsername' -Value "$Username" -type String
Set-ItemProperty $RegistryPath 'DefaultPassword' -Value "$Password" -type String
Write-Warning "AUTO LOGON for user [ $Username ] configured!"
Write-Host