Create Auto-Login script #97

This commit is contained in:
Michael H.G. Schmidt 2023-01-31 21:00:57 +01:00
parent 76780465b8
commit b64414088e

12
tools/auto-logon.ps1 Normal file
View File

@ -0,0 +1,12 @@
$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