1
0

Auto-commit: 2025-10-31 08:58:35

This commit is contained in:
David Wuibaille
2025-10-31 08:58:36 +01:00
parent 7d94414992
commit 7cc3011354
1088 changed files with 193455 additions and 0 deletions

10
AutoAdminLogon/Enable.ps1 Normal file
View File

@@ -0,0 +1,10 @@
$RegPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
$DefaultUsername = "Compte"
$DefaultPassword = "Password"
$DefaultDomaine = "Domaine.local"
Set-ItemProperty $RegPath "AutoAdminLogon" -Value "1" -type String
Set-ItemProperty $RegPath "DefaultUsername" -Value "$DefaultUsername" -type String
Set-ItemProperty $RegPath "DefaultDomainName" -Value "$DefaultDomaine" -type String
Set-ItemProperty $RegPath "ForceAutoLogon" -Value "1" -type String
Set-ItemProperty $RegPath "DefaultPassword" -Value "$DefaultPassword" -type String

5
AutoAdminLogon/readme.md Normal file
View File

@@ -0,0 +1,5 @@
# Documentation
For the full documentation, please visit the link below:
[Setting Up Automatic Login in Windows 10](https://blog.wuibaille.fr/2023/07/activate-autologon-with-windows-10/)