When Windows can’t load your usual user profile because something is broken or conflicting, it creates a new profile folder for you. To avoid deleting or overwriting your old one, it adds your domain name or a number at the end of the folder name. This is why you might see folders like:
User
User.DOMAIN
User.DOMAIN.000
Now In the registry, Windows is pointing your user’s profile to a folder called username.domain.000, but the actual user files are still in username.domain.
This mismatch usually happens when a profile wasn’t fully cleaned up while creating or deploying the system image (for example, during Sysprep).
For renaming a user account doesn't automatically change the profile path - https://learn.microsoft.com/en-us/previous-versions/troubleshoot/windows-client/renaming-user-account-not-change-profile-path
You can try manual copy important files (Desktop, Downloads, Documents) from username.domain to the active profile folder username.domain.000 using File Explorer or PowerShell.
Example PowerShell commands for copying user data: (please use as per your data)
Copy-Item "C:\Users\username.domain\Desktop\*" -Destination "C:\Users\username.domain.000\Desktop\" -Force
Copy-Item "C:\Users\username.domain\Downloads\*" -Destination "C:\Users\username.domain.000\Downloads\" -Force
Now verify the correct SID and registry path in ProfileList:
Get-ItemProperty -Path "Registry::HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\*" |
Where-Object { $_.ProfileImagePath -like "*username*" }
Note: Please ensure ProfileImagePath for the user’s SID points exactly to the active profile folder (e.g., C:\Users\username.domain.000), correct any mismatches by editing the registry key’s ProfileImagePath to the correct folder location and ensure the State value is 0 indicating a normal profile state
Backup the registry before making changes:
reg export "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList" "C:\Backup\ProfileList_backup.reg"
Remove orphaned profile entries corresponding to old or unused profile folders and then restart machines to apply changes.
Troubleshoot user profiles with events https://learn.microsoft.com/en-us/troubleshoot/windows-server/user-profiles-and-logon/troubleshoot-user-profiles-events
Renaming a user account doesn't automatically change the profile path https://learn.microsoft.com/en-us/previous-versions/troubleshoot/windows-client/renaming-user-account-not-change-profile-path
Optimize the base/gold image by removing unnecessary applications and features, applying updates, and configuring default user profile settings to prevent profile corruption and minimize profile size. Modify the default user profile registry hive (NTUSER.DAT) to apply optimized settings for new profiles.
Please apply local policies and group policies to restrict unnecessary background services, disable unnecessary Windows features, and secure profile handling to prevent profile corruption.
Please use image-based non-persistent VDI best practices where profile changes are saved to network locations, not local VMs to ensure user data persistence.
For profile management, Microsoft recommends using profile container solutions like FSLogix, which improve profile handling, reduce profile corruption risks, and eliminate duplicate or orphaned profiles common with traditional roaming or local profiles.
Cleanly sysprep or prepare the base image to ensure unique system state and proper default profile setup before deployment and try regularly monitoring and troubleshoot profile service errors and clean the orphaned or corrupted profiles to prevent users from getting multiple profile folders.
Please consider using Microsoft Dynamic Environment Manager (DEM) with folder redirection for user data for streamlining profile load.
Optimizing Windows configuration for VDI desktops - https://learn.microsoft.com/en-us/windows-server/remote/remote-desktop-services/remote-desktop-services-vdi-optimize-configuration
Create mandatory user profiles: https://learn.microsoft.com/en-us/windows/client-management/client-tools/mandatory-user-profile
User profile management for Azure Virtual Desktop with FSLogix profile containers - https://learn.microsoft.com/en-us/azure/virtual-desktop/fslogix-profile-containers
Please let us know if the suggested steps help.
Regards
Himanshu