Cannot disable login screen - Windows 10 Pro x64

Page 1 of 3 123 LastLast

  1. Posts : 11
    Windows 10 Pro x64
       #1

    Cannot disable login screen - Windows 10 Pro x64


    My problem is whenever I start/restart Windows, am greeted with a login screen with a tab for user name and another for a password. I do not have a Microsoft account and never used a password when Windows was installed. The odd thing is that the welcome screen (before the login screen appears) says 'other user'. I used another name when installing Windows so I don't get it.

    I tried many suggestions online, including registry hacks, the netplwiz trick, etc etc. Basically I need to just input the name I created when Windows was first installed and then am in, but it's a pain having to do that all the time.

    Worth noting is I created a shrunken version using NTLite so it may have screwed up things a bit? I have Windows 10 Pro x64.

    Thanks in advance
    Last edited by xectis; 11 Feb 2022 at 18:16. Reason: Adding more text
      My Computer


  2. Posts : 2,186
    Windows 11 Pro (latest update ... forever anal)
       #2

    There used to be a process where you could run the command control userpasswords2 and set it for auto login for a particular user.

    EDIT : Uh oh, showing my age. That's the old school option for the netplwiz, which you appeared to have tried.
      My Computers


  3. Posts : 14,050
    Windows 11 Pro X64 22H2 22621.1848
       #3

    xectis said:
    My problem is whenever I start/restart Windows, am greeted with a login screen with a tab for user name and another for a password. I do not have a Microsoft account and never used a password when Windows was installed. The odd thing is that the welcome screen (before the login screen appears) says 'other user'. I used another name when installing Windows so I don't get it.

    I tried many suggestions online, including registry hacks, the netplwiz trick, etc etc. Basically I need to just input the name I created when Windows was first installed and then am in, but it's a pain having to do that all the time.

    Worth noting is I created a shrunken version using NTLite so it may have screwed up things a bit? I have Windows 10 Pro x64.

    Thanks in advance

    See if this helps: “Use my sign in info to automatically finish setting up my device and reopen my apps after an update or restart“.

    Also: Settings, Accounts, Sign-in-options:
    Cannot disable login screen - Windows 10 Pro x64-image.png
      My Computers


  4. Posts : 7,607
    Windows 10 Home 20H2
       #4

    I have run the following commands to set "Require sign-in" as "Never".

    Code:
    (REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51" /V "DCSettingIndex" /T REG_DWORD /D "0" /F)
    (REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51" /V "ACSettingIndex" /T REG_DWORD /D "0" /F)

    I have set a password but need not enter the password when I start/restart/wake Windows.
      My Computer


  5. Posts : 11
    Windows 10 Pro x64
    Thread Starter
       #5

    Unfortunately I don't have that option. As I took some stuff out with NTLite, I may have removed that option. Thanks for the suggestion anyway.

    - - - Updated - - -

    Matthew Wai said:
    I have run the following commands to set "Require sign-in" as "Never".

    Code:
    (REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51" /V "DCSettingIndex" /T REG_DWORD /D "0" /F)
    (REG ADD "HKLM\SOFTWARE\Policies\Microsoft\Power\PowerSettings\0e796bdb-100d-47d6-a2d5-f7d2daa51f51" /V "ACSettingIndex" /T REG_DWORD /D "0" /F)

    I have set a password but need not enter the password when I start/restart/wake Windows.
    I used those commands but no luck.
      My Computer


  6. Posts : 7,607
    Windows 10 Home 20H2
       #6

    xectis said:
    I used those commands but no luck.
    Perhaps you will have some luck if you set a password before running those commands.
    I have run the following command to set my password.

    Net users "%Username%" "123456"

    xectis said:
    Unfortunately I don't have that option.
    That option will appear after a password has been set.
      My Computer


  7. Posts : 11
    Windows 10 Pro x64
    Thread Starter
       #7

    Update


    I may have to reinstall my backup, only because of the logon issue but can also live with it . The reason I used NTLite was to take out all of Microsoft's security features such as smartscreen, antivirus and the like. I don't like being controlled by some software that dictates how I should run it. I no longer have the silly blue and yellow shield on apps or desktop icons (right-click to run as admin). That was my aim.
      My Computer


  8. Posts : 5,468
    Windows 11 Home
       #8

    While it makes Windows noticeably faster, it also breaks it. You can get BSOD like critical process died and such. Everything is interconnected. Rather than using NTlite it is better to disable/remove it afterwards, like:

    Code:
    takeown /s %computername% /u %username% /f "%WinDir%\System32\smartscreen.exe"
    icacls "%WinDir%\System32\smartscreen.exe" /grant:r %username%:F
    taskkill /im smartscreen.exe /f
    del "%WinDir%\System32\smartscreen.exe" /s /f /q
      My Computer


  9. Posts : 11
    Windows 10 Pro x64
    Thread Starter
       #9

    TairikuOkami said:
    While it makes Windows noticeably faster, it also breaks it. You can get BSOD like critical process died and such. Everything is interconnected. Rather than using NTlite it is better to disable/remove it afterwards, like:

    Code:
    takeown /s %computername% /u %username% /f "%WinDir%\System32\smartscreen.exe"
    icacls "%WinDir%\System32\smartscreen.exe" /grant:r %username%:F
    taskkill /im smartscreen.exe /f
    del "%WinDir%\System32\smartscreen.exe" /s /f /q
    On the first line I should add my computer and user name where it says %computername% /u %username%. Correct?. And it is just one whole command line or I should do it line by line?
      My Computer


  10. Posts : 18,034
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #10

    Hello @xectis,
    Welcome to TenForums.

    xectis said:
    On the first line I should add my computer and user name where it says %computername% /u %username%. Correct?. And it is just one whole command line or I should do it line by line?
    No.

    If you type [ Copy & Paste ] the following into a CMD Prompt and press Enter, you will see the results . . .

    echo %ComputerName%
    echo %Username%

    They are Environment Variables and will return the ACTUAL values.

    There are FOUR separate Lines.

    I hope this helps.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 00:44.
Find Us




Windows 10 Forums