Autologin a user (Windows 8)

0

Many users use just one main login for a windows 8 PC with no password and that one logs in automaticaly (user1).

In order to access files from windows 8 machine on Android or other Windows PCs, a separate second login with password is the easiest solution. (user2)

How can one setup autologin for user1 and keep user2 somehow very much in the background and never bother the main user.

user12363

Posted 2013-01-11T00:08:44.547

Reputation: 337

Question was closed 2014-08-08T18:53:10.703

2

It looks like this question was previously answered here: http://superuser.com/questions/495015/how-to-enable-automatic-login-in-windows-8

– Llamanerds – 2013-01-11T00:34:38.197

indeed. still, netplwiz == control userpasswords2 – Lorenzo Von Matterhorn – 2013-01-11T00:45:57.697

Answers

0

on the run dialog type

control userpasswords2

click the user, de-select the box, apply and done.

note: if it doesn't work via run dialog, run it from an elevated cmd.exe

edit:

enter image description here

note2: image is outdated, UI is still the same-ish

Lorenzo Von Matterhorn

Posted 2013-01-11T00:08:44.547

Reputation: 2 137

That does have user account management information, but I don't see an auto-login option to enable. – Llamanerds – 2013-01-11T00:32:26.563

@Llamanerds i edited the answer – Lorenzo Von Matterhorn – 2013-01-11T00:40:16.757

0

I have always prefered to use the Registry and AutoAdminLogon Launch Regedit and navigate to:

HKLM\Software\Microsoft\Windows NT\CurrentVersion\winlogon 
Set: AutoAdminLogon = 1 (one means automatic, zero means off, normal logon.)

Actually, the key point is setting a DefaultPassword for the DefaultUserName.

Create a new String Value called DefaultPassword
Set: DefaultPassword = "YourPwd".

If you want to know more here is an article of mine about AutoAdminLogon in Windows 8

Guy Thomas

Posted 2013-01-11T00:08:44.547

Reputation: 3 160