Can I set my Windows to boot without stop on password verification even when having a password set?

9

3

Is there some way to configure Windows 7 to boot up without asking for a password (on password check phase) even if I have a password set on my account?

What I wan't to do with it, is boot up without interruptions, but when I lock my Windows (with Win+L) I want to block it until I enter my account password.

I was wondering if maybe exists some registry set configuration of something like this.

Diogo

Posted 2012-03-28T21:13:46.717

Reputation: 28 202

Question was closed 2015-04-14T16:37:48.340

1IMHO "A locked Windows? Oh power off, power on and now I have access" That's why you couldn't have a password only when you lock your Windows. ( Posted as comment, since I don't know, there's maybe a way to do it) – Nettogrof – 2012-03-28T21:17:17.790

While I think there may be some way to do this (I don't know of one, though) I agree with @Nettogrof that it's totally insecure and pointless. – Shinrai – 2012-03-28T21:23:14.403

3Actually, the true history is that I erased my account password because I put a password on BIOS to start booting Windows, so, if I left a password active on Windows, I would need to insert two passwords to boot Windows... Without a password, windows lock do not require a password to enter, so my machine would be unprotected. With this situation, I insert password protection to boot jusr 1 second after turning on my machine and still have lock screen password protection, I win on boot time, if I made myself understandable.... – Diogo – 2012-03-28T22:03:37.513

@shinrai: certainly insecure, but not at all pointless. Security is frequently not much of a concern: not everybody puts stuff on their computer that they feel they need to hide. – kreemoweet – 2012-03-28T23:37:23.357

1@DiogoRocha - Now that setup makes sense :) – Shinrai – 2012-03-29T00:05:50.097

Answers

11

Open a run box Win+R and type in

control userpasswords2

Uncheck "users must enter a user name and password to use this computer", highlight the user account you wish to log on automatically before going to the next step.

enter image description here

Then click the Advanced Tab and be sure "Require users to pres ctrl+alt+del" box is Unchecked then hit apply.

enter image description here

Enter the user account name and password for the account you wish to log on automatically and hit the Ok button. Close user accounts window. (If you highlighted the correct user count as suggested earlier it will automatically be filled in)

enter image description here

It will now log on using the account and password you set, using Win+L will still require a password to log back on.

Moab

Posted 2012-03-28T21:13:46.717

Reputation: 54 203

1@DiogoRocha You are welcome. – Moab – 2012-03-28T22:06:51.463

4

If you want to keep your password, but still automatically login on boot, you can do it by setting a registry key:

HKLM -> SOFTWARE -> Microsoft -> Windows NT -> CurrentVersion -> Winlogon

You need to set the DefaultUserName, DefaultPassword, and DefaultDomain string values to match your login information, and set the AutoAdminLogon string value to "1". If any of these values do not exist, you will need to create them.

Joel Coehoorn

Posted 2012-03-28T21:13:46.717

Reputation: 26 787