Required Files: None
Unhide Previously Hidden User Account in Windows.
#unhide admin accounts from the logon screen $Username = "TYPEHERE" $path = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList' New-Item $path -Force | New-ItemProperty -Name $Username -Value 1 -PropertyType DWord -Force |