w10install/tools/auto-logon.ps1
2023-01-31 21:00:57 +01:00

13 lines
471 B
PowerShell

$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