My windows 10 user has duplicated and I can't delete the new one. + Password problems

Xblease

New member
Joined
May 17, 2020
Posts
2
As the title says last week my windows account somehow got duplicated on my PC. I tried doing the netplwiz but it only shows one account. On top of that I used to always login without any password and now windows forces me to log in with a password and create a pin everytime, which is unskippable. I tried pretty much everything and I can't fix both of those issues. I would like to only have one user and boot up my windows without having to use my password (which I never set up). Thanks for you help
 
To get you started:

1) Open administrative powershell and type or copy and paste:
2) sfc /scannow
3) dism /online /cleanup-image /scanhealth
4) dism /online /cleanup-image /restorehealth
5) sfc /scannow
6) chkdsk /scan
7) Get-LocalUser
8) Get-LocalUser | Select *

9) When these have completed > right click on the top bar or title bar of the administrative command prompt box > left click on edit then select all > right click on the top bar again > left click on edit then copy > paste into the thread


Reset Password of User Account in Windows 10
Reset Password of User Account in Windows 10
Enable or Disable Passwordless Sign-in for Microsoft Accounts
 
Code:
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.

Try the new cross-platform PowerShell https://aka.ms/pscore6

PS C:\Windows\system32> sfc /scannow

Beginning system scan.  This process will take some time.

Beginning verification phase of system scan.
Verification 100% complete.

Windows Resource Protection did not find any integrity violations.
PS C:\Windows\system32>  dism /online /cleanup-image /scanhealth

Deployment Image Servicing and Management tool
Version: 10.0.18362.1

Image Version: 10.0.18363.836

[==========================100.0%==========================] No component store corruption detected.
The operation completed successfully.
PS C:\Windows\system32>  dism /online /cleanup-image /restorehealth

Deployment Image Servicing and Management tool
Version: 10.0.18362.1

Image Version: 10.0.18363.836

[==========================100.0%==========================] The restore operation completed successfully.
The operation completed successfully.
PS C:\Windows\system32> sfc /scannow

Beginning system scan.  This process will take some time.

Beginning verification phase of system scan.
Verification 100% complete.

Windows Resource Protection did not find any integrity violations.
PS C:\Windows\system32> chkdsk /scan
The type of the file system is NTFS.

Stage 1: Examining basic file system structure ...
  538880 file records processed.
File verification completed.
  11029 large file records processed.
  0 bad file records processed.

Stage 2: Examining file name linkage ...
  436 reparse records processed.
  709228 index entries processed.
Index verification completed.
  0 unindexed files scanned.
  0 unindexed files recovered to lost and found.
  436 reparse records processed.

Stage 3: Examining security descriptors ...
Security descriptor verification completed.
  85175 data files processed.
CHKDSK is verifying Usn Journal...
  36512224 USN bytes processed.
Usn Journal verification completed.

Windows has scanned the file system and found no problems.
No further action is required.

 242618758 KB total disk space.
 144621940 KB in 381192 files.
    229328 KB in 85176 indexes.
         0 KB in bad sectors.
    651294 KB in use by the system.
     65536 KB occupied by the log file.
  97116196 KB available on disk.

      4096 bytes in each allocation unit.
  60654689 total allocation units on disk.
  24279049 allocation units available on disk.
PS C:\Windows\system32> Get-LocalUser

Name               Enabled Description
----               ------- -----------
Administrator      False   Built-in account for administering the computer/domain
DefaultAccount     False   A user account managed by the system.
Guest              False   Built-in account for guest access to the computer/domain
WDAGUtilityAccount False   A user account managed and used by the system for Windows Defender Application Guard scen...
xBlea              True


PS C:\Windows\system32> Get-LocalUser | Select *


AccountExpires         :
Description            : Built-in account for administering the computer/domain
Enabled                : False
FullName               :
PasswordChangeableDate :
PasswordExpires        :
UserMayChangePassword  : True
PasswordRequired       : True
PasswordLastSet        :
LastLogon              :
Name                   : Administrator
SID                    : S-1-5-21-126758867-2033256329-2027354894-500
PrincipalSource        : Local
ObjectClass            : User

AccountExpires         :
Description            : A user account managed by the system.
Enabled                : False
FullName               :
PasswordChangeableDate :
PasswordExpires        :
UserMayChangePassword  : True
PasswordRequired       : False
PasswordLastSet        :
LastLogon              :
Name                   : DefaultAccount
SID                    : S-1-5-21-126758867-2033256329-2027354894-503
PrincipalSource        : Local
ObjectClass            : User

AccountExpires         :
Description            : Built-in account for guest access to the computer/domain
Enabled                : False
FullName               :
PasswordChangeableDate :
PasswordExpires        :
UserMayChangePassword  : False
PasswordRequired       : False
PasswordLastSet        :
LastLogon              :
Name                   : Guest
SID                    : S-1-5-21-126758867-2033256329-2027354894-501
PrincipalSource        : Local
ObjectClass            : User

AccountExpires         :
Description            : A user account managed and used by the system for Windows Defender Application Guard scenarios
                         .
Enabled                : False
FullName               :
PasswordChangeableDate : 03.04.2020 17:49:08
PasswordExpires        : 15.05.2020 17:49:08
UserMayChangePassword  : True
PasswordRequired       : True
PasswordLastSet        : 03.04.2020 17:49:08
LastLogon              :
Name                   : WDAGUtilityAccount
SID                    : S-1-5-21-126758867-2033256329-2027354894-504
PrincipalSource        : Local
ObjectClass            : User

AccountExpires         :
Description            :
Enabled                : True
FullName               : Dan
PasswordChangeableDate : 11.05.2020 13:22:23
PasswordExpires        :
UserMayChangePassword  : True
PasswordRequired       : True
PasswordLastSet        : 11.05.2020 13:22:23
LastLogon              :
Name                   : xBlea
SID                    : S-1-5-21-126758867-2033256329-2027354894-1001
PrincipalSource        : MicrosoftAccount
ObjectClass            : User



PS C:\Windows\system32>
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top