user profile cannot manage profiles for local user accounts with null passwordAre these the messages you get? Then it seems like you have 3rd party password policy applied.
you have been logged on with unmanned profile
User Profile Manager - this seems to be a 3rd party app. Can you change the settings of the app to not require a null password?Or uninstall it?
net user Administrator /active:yes
net user USERNAME PASSWORD /add
What is the result?REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /t REG_SZ /d 1 /f
REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultDomainName /t REG_SZ /d your_domainname /f
REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultUserName /t REG_SZ /d your_username /f
REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v DefaultPassword /t REG_SZ /d your_password /f
net user <username> <password> /add
Can you delete the test user in the command line?net localgroup <localgroupname> <username> /add
REG ADD "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /t REG_SZ /d 0 /f
REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\UserSwitch" /v Enabled /t REG_DWORD /d 0 /f
Windows would not care if the password was empty.