From b64414088ec4d4f3241925fd6f695eaba0cc9194 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Tue, 31 Jan 2023 21:00:57 +0100 Subject: [PATCH] Create Auto-Login script #97 --- tools/auto-logon.ps1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tools/auto-logon.ps1 diff --git a/tools/auto-logon.ps1 b/tools/auto-logon.ps1 new file mode 100644 index 0000000..588bcca --- /dev/null +++ b/tools/auto-logon.ps1 @@ -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 +