How do I disable password login on Windows 10?

How do I disable password login on Windows 10?
I’m looking for a way to disable the password login feature on my Windows 10 computer. It feels quite cumbersome to enter my password every time I want to access my desktop. I understand the importance of security, but I’m the only user of my device, and it stays at home mostly. This repeated password entry seems unnecessary in my situation. I’m interested in knowing if there is a straightforward method to bypass the password screen every time I boot up or wake my computer from sleep. Can someone guide me on how to disable password login on Windows 10?
6 Answers

For those who enjoy a more automated approach, a PowerShell script can be handy:
- Open
PowerShell
as an administrator. - Execute the following script:
“`powershell
$username = $env:UserName
Add-Type -TypeDefinition @”
using System;
using System.Runtime.InteropServices;
public class AutoLogin {
[DllImport(“user32.dll”)]
public static extern int SetForegroundWindow(IntPtr hwnd);
}
“@
AutoLogin::SetForegroundWindow((Get-Process explorer).MainWindowHandle)
“`
This script configures your system to automatically log in, circumventing the password request entirely.

To modify the settings using Group Policy, follow these steps:
- Press
Win+R
, typegpedit.msc
, and hitEnter
. - Navigate to
Computer Configuration
>Windows Settings
>Security Settings
>Local Policies
>Security Options
. - Find and double-click on
Interactive logon: Do not require CTRL+ALT+DEL
. - Set this policy to
Enabled
and apply the changes.
This method leverages the Group Policy Editor to remove the additional password prompt, streamlining your login process. Note that Group Policy is typically available in Windows 10 Pro and Enterprise editions.

For enthusiasts who prefer command-line solutions, here’s a way using Command Prompt:
- Open
Command Prompt
as an administrator. - Type
control userpasswords2
and pressEnter
. - This opens the User Accounts window. Uncheck
Users must enter a user name and password to use this computer
. - Click
Apply
and enter your password to confirm. - Click
OK
to save these changes.
This method is quick and direct, effectively eliminating the need for a password at login.

Disabling the password login feature in Windows 10 is pretty straightforward and can be done via the User Accounts settings. Here’s how:
- Press
Win+R
to open the Run dialog box. - Type
netplwiz
and hitEnter
. - In the User Accounts window that appears, select your user account.
- Uncheck the option that says “Users must enter a user name and password to use this computer”.
- Click on
Apply
. - When prompted, enter your current password to confirm.
- Hit
OK
to finalize.
From now on, your computer should boot directly to the desktop without prompting for a password.

If your system asks for a password after waking up from sleep, you can adjust this in the power settings:
- Open
Settings
via the Start menu. - Go to
Accounts
and click onSign-in options
. - Under
Require sign-in
, selectNever
from the dropdown menu.
This change will disable the password prompt whenever the device wakes up from sleep mode, adding convenience to your experience.

Here’s another method using the Settings app in Windows 10:
- Go to the
Start
menu and click onSettings
. - Navigate to
Accounts
and then selectSign-in options
. - Under the
Password
section, click onChange
. - Enter your current password when prompted.
- On the next screen, leave the new password fields empty and click
Next
followed byFinish
.
This allows you to remove your password completely, ensuring you’re not asked for it again during login.