How to disable startup password in Windows 10 ?

Anonymous
2021-05-02T14:13:38+00:00

Windows specifications

Edition : Win 10 Pro 

Version : 20H2

Installed on : 22/2/2021

OS build : 19042.928  Experience : windows Feature Experience Pack 120.2212.551.0

I have windows 10 with configuration as above , I want to  disable the password prompt every time I sign in to my pc .

i was searching in microsoft.com and found a lot of people asking about this .

i use netplwiz but didn't find this Option to uncheck it

Users must enter a username and password to use this computer

also I set this settings

Start button - Settings - Personalization - Lock Screen - Screen Saver Settings

screen saver : none On resume, display login of screen unchecked

Start button - Settings - Accounts -Sign-in Options - Require Sign-in - set to Never.

i want

Windows for home | Windows 10 | Security and privacy

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes
Answer accepted by question author
  1. Anonymous
    2021-05-04T07:50:37+00:00

    You can do this:

    1. Save the script below as AutoLogon.bat. The .bat file extension is essential.
    2. Double-click AutoLogon
    3. Select I for Install, R for Remove
    4. Enter your curren password.

    If this solves your problem then please remember to mark my reply by clicking "Did this solve your problem?". It's your way of saying "Thank you".

    @echo off

    goto Start


    Enable or disable AutoLogon on machines where

    netplwiz no longer works.

    9.12.2020 FNL


    :Start

    set Mode=

    set /p Mode=Install or Remove AutoLogon (I/R) 

    if /i "%Mode%"==""  goto :eof

    if /i "%Mode%"=="I" goto Install

    if /i "%Mode%"=="R" goto Remove

    goto Start

    :Install

    set /p PW=Password: 

    if "%PW%"=="" goto :eof

    echo Installing AutoLogon for "%UserName%"

    echo>  "%temp%\AutoLogon.reg" Windows Registry Editor Version 5.00

    echo.>>"%temp%\AutoLogon.reg"

    echo>> "%temp%\AutoLogon.reg" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]

    echo>> "%temp%\AutoLogon.reg" "DefaultUserName"="%UserName%"

    echo>> "%temp%\AutoLogon.reg" "DefaultPassword"="%PW%"

    echo>> "%temp%\AutoLogon.reg" "AutoAdminLogon"="1"

    "%temp%\AutoLogon.reg"

    goto :eof

    :Remove

    echo Removing AutoLogon

    echo>  "%temp%\AutoLogon.reg" Windows Registry Editor Version 5.00

    echo.>>"%temp%\AutoLogon.reg"

    echo>> "%temp%\AutoLogon.reg" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]

    echo>> "%temp%\AutoLogon.reg" "DefaultUserName"=-

    echo>> "%temp%\AutoLogon.reg" "DefaultPassword"=-

    echo>> "%temp%\AutoLogon.reg" "AutoAdminLogon"="0"

    "%temp%\AutoLogon.reg"

    1 person found this answer helpful.
    0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Anonymous
    2021-05-09T10:25:12+00:00

    If this solves your problem then please remember to mark my reply by clicking "Did this solve your problem?". It's your way of saying "Thank you".

    Thanks a lot

    0 comments No comments