Windows Server 2008 R2에서 사용자 계정을 추가했을 때 그 계정이름을 로그인 화면에 나타나지 않게 설정하기


윈도 운영체제는 사용자 계정을 추가하면 추가한 계정이 로그인 화면에 나타나서 사용자가 쉽게 로그인할 수 있도록 돕는다. 하지만 보안 측면에서는 사용자 이름을 보여주지 않는 것이 좋다. 또한 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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s