윈도 운영체제는 사용자 계정을 추가하면 추가한 계정이 로그인 화면에 나타나서 사용자가 쉽게 로그인할 수 있도록 돕는다. 하지만 보안 측면에서는 사용자 이름을 보여주지 않는 것이 좋다. 또한 10개 이상의 사용자계정을 만들면 로그인 화면이 지저분하게 된다. 이것을 해결하는 방법은 다음과 같다.
secpol.msc -> Local Policies -> Security Options -> Interactive Logon: Do not display last user name 항목에서 disabled된 것을 Enabled로 변경하면 된다.
다른 방법은 PowerShell을 이용하면 된다.
Set-ItemProperty -Path “HKLM:Software\Microsoft\Windows\CurrentVersion\Policies\System” -Name dontdisplaylastusername -Value 1 -Type DWORD