Hide service accounts from Windows logon screen
If you are playing with multiple Virtual Machines and multiple SQL Server instances and features, it’s very likely that your virtual machines logon screens are showing all the users you set up for service accounts.
In this case, my Master Data Services playground shows the “MDSAppPoolUser” I set up for the MDS web application:
Needless to say that I will never need to logon as one of those service accounts and I would be happier if the logon screen just hid them.
The good news is that Windows can do that, with a simple registry hack.
The registry key to add is the following:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList
Under the UserList key, you just have to add a REG_DWORD named after each user you want to hide, with a value of 0 (zero):
To verify that the service account user has been hidden from your logon screen, you can select “change user” from the start menu:
That’s it! No more service accounts on your logon screen.
If you want to re-enable those account on the logon screen, just change the DWORD value to 1 (one).
Posted on April 5, 2012, in SQL Server and tagged Logon, registry hack, Users, Windows. Bookmark the permalink. 2 Comments.
Thanks for the post buddy, useful info!
Thanks to you, my friend!