autologon changes

This commit is contained in:
Michael H.G. Schmidt 2023-02-01 21:35:19 +01:00
parent 3ab6bb6577
commit 14394caa4d
3 changed files with 16 additions and 3 deletions

10
tools/autologon.cmd Normal file
View File

@ -0,0 +1,10 @@
@echo off
set TOOLS=c:\tools
echo ####### %0 #######
echo Activating Auto Logon for a user ...
powershell -command %TOOLS%\autologon.ps1
echo ####### %0 #######

View File

@ -1,10 +1,11 @@
# 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 '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!"

View File

@ -2,10 +2,12 @@
echo ####### %0 #######
echo disabling autologon for admin ...
echo disabling autologon ...
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultDomainName /f 2>nul
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultPassword /f 2>nul
reg delete "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultUserName /f 2>nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" ^
/v "AutoAdminLogon" /t REG_SZ /d 0 /f 2>nul
echo ####### %0 #######