Server 2012R2 other users tile

windows-server-2012-r2

I want to know if we can hide the other user tile while logging in to windows server 2012R2, i found some answers like
a. Go to Start.
b. Type “gpedit.msc” without the quotes and press enter.
c. Go to Computer Configuration / Windows Settings / Security Settings / Local Policies / Security Options.
d. In the right-hand pane double click the policy: Interactive logon: Do not display last user name. This security setting determines whether the name of the last user to log on to the computer is displayed in the Windows logon screen.
e. Select and set the radio button of Disabled.
f. Click Apply and click OK.

and other things as well but in vain.

please someone help me in this

Best Answer

As administrator, run regedit.exe and browse to [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList] (create the subkeys as necessary). In this key, create 1 DWORD value for each user account you wish to hide, with the name being the name of the user account, with the value 0 to hide it. E.g. to hide the user "RandomUser", you would create the following registry value (shown in the registry key export format):

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList]
"RandomUser"=dword:00000000

You may need to reboot the server afterwards for this to take effect.