How to set user account as default selected in login screen on windows 7?

29
2013-07
  • cody

    Possible Duplicate:
    Is there a way to “preselect” a certain user on the Windows 7 login screen?

    How can I set a user account to be selected per default in login screen on windows 7 so that I don't have to click on the account on every boot. I just want to type the password and press enter.

  • Answers
  • Randolf Richardson

    You could automate the login with some Windows Registry settings, but if entering your password is a requirement then this isn't going to be the right solution for you.

      How to turn on automatic logon in Windows XP
      http://support.microsoft.com/kb/315231



  • view all most popular Amazon Coupons
    .

    Related Question

    Windows 7 hidden account
  • adaptive

    I hid one of the accounts on my computer from the welcome screen by adding it to the registry key:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\Winlogon\SpecialAccounts\UserList
    

    I was hoping I'd be able to log in to this account by hitting Ctrl+Alt+Del on the welcome screen, but Windows 7 completely ignores this. Is there a way to login to the hidden account on a Windows 7 machine?


  • Related Answers
  • bubu

    Starting with Vista, ctrl-alt-del doesn't work any more by default in the login screen.

    (edited to make it at least correct)

  • M4N

    I made the same mistake (on windows 7), because there are quite a lot of articles which say that using this hack it is possible to hide a user from the login screen (while still being able to log-in using Ctrl-Alt-Delete).

    I my case I hid the only administrator user. Fortunately, I was able to reactivate the user with the following procedure:

    • login using a normal/standard users account
    • open the command prompt
    • start another command prompt running under the admin-account by typing:
      • runas /user:name_of_admin_account cmd
      • you will be asked to enter the password for the admin account
    • in the new command prompt start regedit
    • un-hide the admin account by deleting the corresponding registry entry or setting its value to 1

    Now the user should be shown again on the login screen.

  • pjemmert

    If I'm not mistaken, once you add it to the hidden list, it does just that, makes the account hidden from logins, hacking, etc. This is more of a form of protection option than an actual functional feature.

  • Brian Reiter

    If what you are trying to do is to hide the list of user accounts from people logging onto the computer, you can make a change to the local policy.

    • open gpedit.msc
    • Navigate to Local Computer Policy -> Computer Configuration -> Windows Settings -> Security Settings -> Security Options:
    • Set "Interactive logon: Do not display last user name" to Enabled.
  • Ivo Flipse

    With the Classic login screen (so no Icons) they have to know your account name to login, which in a way is more secure already.

    How to get the Classic logon:

    • Press start
    • Type: local security policy
    • Press enter
    • Expand local policies
    • Click Security Options
    • Double-click "Interactive Login: Do not display last user name"
    • Check Enabled
    • Click OK

    I think you don't really have any other option, expect perhaps trying to hide it with TweakUI.

  • nadster

    You can enable this option in Local Policy\Security Options. "Do no display last User Name" this forces every user to put in their User Name & Password.

  • 8088

    Create a standard or administrator user account. To hide it do the following:

    1. Open cmd (Run as administrator)
    2. Type the following:

      net localgroup users "account name" /delete
      

    This completely hides the account from the login menu. You can login from any other computer to that account, provided you have the correct spelling and the password for it.

    To show it again do the following:

    1. Open cmd (Run as administrator)
    2. Type the following:

      net localgroup users "account name" /add
      
  • Synetech

    In case of emergency I suggest the following... And yes I know it sucks...

    1. Create an Administrator account

    2. Hide it

    Home Versions - Using command prompt: net user Administrator /active:no (Note: change Administrator to match your created username)

    Pro/Ultimate - Using Group Policy: Follow above instructions using GPedit.msc or other

    1. Open regedit, then browse to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System, edit the "dontdisplaylastusername" value from 0 to 1, then export this key as "Enable-Login.reg" somewhere where you will remember it. Edit the value BACK TO 0, then exit.

    2. In case of emergency, you can now boot from any Vista or Windows 7 media, open the repair option, then use command prompt and reg.exe to open the .reg you just created. Once you import that value, reboot, and you will have the domain style login with no username or password pre-entered.

    Unfortunately they took away the nice double CTRL+ALT+DEL to get this prompt, and I have been trying to get it going for some time. Just wish they would add this back so it can be used when needed!