Skip to main content

Fixing a Corrupt User Profile in Windows

Media Fixing a Corrupt User Profile in Windows

A corrupt Windows user profile can make an otherwise healthy computer feel completely broken.

You may sign in and find that your desktop has disappeared, your files seem to be missing, applications no longer remember their settings, or Windows displays a message such as:

The User Profile Service failed the sign-in. User profile cannot be loaded.

In other cases, Windows signs you into a temporary profile. The desktop looks unfamiliar, your normal shortcuts are gone, and any changes you make may disappear after you restart.

A damaged profile does not always mean the entire Windows installation is corrupt. Often, the operating system, applications and personal files are still intact. The problem is limited to the account Windows uses to load your settings.

The safest fix is to confirm what has happened, protect the user’s data and then either repair the profile or move the user into a clean account.

What Is a Windows User Profile?

A Windows user profile stores the information associated with a particular account, including:

  • Desktop files and shortcuts
  • Documents, Downloads, Pictures and other personal folders
  • Application preferences
  • Browser data
  • Start menu configuration
  • Registry settings specific to the user
  • Outlook and Microsoft 365 configuration
  • Saved credentials and mapped resources

Most local profile data is stored inside:

C:\Users\Username

Windows also keeps profile information in the Registry. If the folder, registry entry or permissions become damaged, Windows may be unable to load the account correctly.

Common Signs of a Corrupt Profile

A profile problem can appear in several ways.

Windows signs you into a temporary profile

You may see a notification explaining that Windows could not sign into your account and has loaded a temporary profile instead.

Typical symptoms include:

  • A default Windows desktop
  • Missing shortcuts
  • Missing wallpaper and personal settings
  • Applications behaving as though they have just been installed
  • Files apparently missing from Desktop or Documents
  • Changes disappearing after sign-out

The original data is often still present in the user’s folder under C:\Users.

The User Profile Service fails

Windows may stop at the sign-in screen with an error saying the user profile cannot be loaded.

This often means Windows can see the account but cannot open the associated profile.

Only one account is affected

If another administrator or user can sign in normally, that is a strong indication that the issue is profile-specific rather than a wider Windows problem.

The desktop loads incorrectly

A damaged profile may also cause:

  • A blank or black desktop
  • Start menu errors
  • Search not working
  • Applications failing only for one user
  • Repeated OneDrive setup prompts
  • Missing taskbar settings
  • Constant application crashes

These symptoms can have other causes, but profile corruption should be considered when they affect only one account.

What Causes a User Profile to Become Corrupt?

Profile damage can result from:

  • A forced shutdown during sign-in or sign-out
  • Storage errors
  • Malware or unwanted software
  • Incorrect registry changes
  • Antivirus or security software interference
  • Failed Windows updates
  • Sudden power loss
  • Low disk space
  • File-system corruption
  • Profile folder permission changes
  • Synchronisation problems
  • A failed migration from another PC or domain

Business computers may also develop profile issues after domain changes, Microsoft Entra ID changes, device migrations or unsuccessful profile-management software updates.

Do Not Keep Working in a Temporary Profile

When Windows signs you into a temporary profile, it can be tempting to recreate your shortcuts and carry on working.

Avoid doing this.

Files saved to a temporary Desktop or Documents folder may be removed when you sign out or restart. Settings changed in the temporary session may also be discarded.

Save any work immediately to a known safe location such as:

  • An external drive
  • A network share
  • OneDrive or SharePoint
  • A folder inside the original user profile
  • Another confirmed permanent location

Then begin troubleshooting.

Step 1: Restart the Computer Properly

A temporary profile can occasionally be caused by a one-off sign-in failure.

Restart Windows rather than simply signing out:

  1. Open the Start menu.
  2. Select the power button.
  3. Choose Restart.
  4. Sign in again.

Do this once or twice, but do not repeatedly restart the machine if the profile continues to fail.

If Windows loads the correct account after a restart, check the disk, available storage and event logs to understand why the failure happened.

Step 2: Check That the User’s Files Still Exist

Sign in with another administrator account. If there is no second administrator account, you may need to start Windows in Safe Mode or use another approved recovery method.

Open File Explorer and browse to:

C:\Users

Look for the affected user’s folder.

For example:

C:\Users\Carl

Check common locations such as:

C:\Users\Carl\Desktop

C:\Users\Carl\Documents

C:\Users\Carl\Downloads

C:\Users\Carl\Pictures

If the files are present, the data has probably not been deleted. Windows is simply failing to load the profile correctly.

You may also see additional folders such as:

Carl.DESKTOP-123ABC

Carl.000

Carl.001

TEMP

These can indicate that Windows has created a replacement or temporary profile.

Do not delete any profile folder until the important files have been backed up.

Step 3: Back Up the Original Profile

Before editing the Registry, renaming folders or creating a replacement profile, make a backup.

At minimum, copy:

  • Desktop
  • Documents
  • Downloads
  • Pictures
  • Videos
  • Music
  • Favourites
  • Browser bookmarks, where needed
  • Outlook signature files
  • Application-specific working folders
  • Any local data not stored elsewhere

Back up to a separate disk, network location or trusted cloud service.

Be cautious when copying hidden application data. Copying the entire AppData folder into a new profile can bring the original corruption with it.

Important application data may need to be moved selectively.

Step 4: Check Available Disk Space

Windows can fail to load or update a profile when the system drive is almost full.

Open:

Settings > System > Storage

Make sure the Windows drive has enough free space.

Remove unnecessary temporary files, old downloads or unused applications where appropriate. Do not use aggressive cleaning tools that delete unfamiliar system or profile files.

After freeing space, restart and test the affected account again.

Step 5: Run File-System and Windows Repair Checks

A corrupt profile can sometimes be a symptom of a wider storage or Windows problem.

Open Terminal as administrator and run:

chkdsk C: /scan

This checks the system drive for file-system problems without immediately taking the computer offline.

You can also run:

sfc /scannow

System File Checker examines protected Windows files and attempts to repair damaged copies.

If SFC reports problems it cannot repair, run:

DISM /Online /Cleanup-Image /RestoreHealth

After DISM finishes, run sfc /scannow again and restart the computer.

These commands repair Windows components. They do not normally reconstruct a damaged user profile, but they can resolve underlying system corruption that contributed to the failure.

Step 6: Check the Profile Registry Entry

Windows links user accounts to profile folders through the Registry.

A common profile failure occurs when Windows creates duplicate entries and adds .bak to the correct one.

Registry editing carries risk. Back up the profile and create a restore point before making changes.

Sign in with a different administrator account, then:

  1. Press Windows + R.
  2. Enter regedit.
  3. Approve the administrator prompt.
  4. Navigate to:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

Under ProfileList, you will see keys beginning with values such as:

S-1-5-21-...

Each one represents a user security identifier.

Select each key and inspect the value named:

ProfileImagePath

This shows the profile folder associated with that entry.

For example:

C:\Users\Carl

Fixing a Duplicate

.bak

Profile Entry

You may find two similar Registry keys:

S-1-5-21-123456789-...-1001

S-1-5-21-123456789-...-1001.bak

The .bak key may point to the correct user folder, while the entry without .bak points to a temporary or replacement profile.

A common repair is:

  1. Rename the key without .bak by adding .old.
  2. Rename the correct key by removing .bak.
  3. Select the corrected key.
  4. Set RefCount to 0, if that value exists.
  5. Set State to 0.
  6. Close Registry Editor.
  7. Restart Windows.

For example:

Original temporary key:

S-1-5-21-...-1001


 

Rename to:

S-1-5-21-...-1001.old


 

Original correct key:

S-1-5-21-...-1001.bak


 

Rename to:

S-1-5-21-...-1001

Only make this change when you have confirmed the correct ProfileImagePath. Renaming the wrong entry can affect another user account.

If there is no obvious duplicate or .bak entry, creating a new profile is usually safer than experimenting with Registry values.

Step 7: Create a New User Profile

When the existing profile is badly damaged, the most reliable fix is often to create a clean account and move the user’s data into it.

In Windows 11:

  1. Open Settings.
  2. Go to Accounts.
  3. Select Other users.
  4. Choose Add account.
  5. Create a new Microsoft account or local account as appropriate.
  6. Change the account type to Administrator temporarily if required.

Sign into the new account once and allow Windows to create the profile.

Then sign out and return to the administrator account used for the repair.

Step 8: Copy Personal Data into the New Profile

Copy the user’s personal files from the old profile into the equivalent folders in the new one.

For example:

C:\Users\OldProfile\Documents

to:

C:\Users\NewProfile\Documents

Repeat this for:

  • Desktop
  • Documents
  • Downloads
  • Pictures
  • Music
  • Videos
  • Favourites

Avoid copying these files directly from the old profile:

NTUSER.DAT

NTUSER.DAT.LOG

NTUSER.INI

These contain profile-specific Registry information and may carry the corruption into the new account.

Also avoid copying the entire AppData folder without reviewing it.

What About AppData?

AppData contains settings and local data for applications.

Its main folders are:

AppData\Local

AppData\LocalLow

AppData\Roaming

Some useful data may be stored there, including:

  • Email signatures
  • Application templates
  • Browser profiles
  • Saved application settings
  • Locally stored databases
  • Specialist software configuration

However, AppData is also where many profile-related problems live.

The safer approach is to copy only the folders needed for specific applications. Reinstall or reconfigure applications where practical.

Do not blindly copy all of AppData from the damaged profile into the new one.

Recovering Browser Data

If the user signs into Microsoft Edge, Chrome or another browser with synchronisation enabled, favourites, passwords and settings may return automatically after signing in.

Before relying on synchronisation, confirm that the account is correct and the required data is available.

For browsers without sync, export bookmarks from the original profile if the browser can still be opened.

Stored browser passwords should be handled carefully. They may be encrypted to the original Windows account and may not work after being copied to a new profile.

Recovering Outlook and Email Settings

Microsoft 365 and Exchange accounts usually recreate their mailbox data after Outlook is configured in the new profile.

However, check for local-only information such as:

  • PST files
  • Outlook signatures
  • Local archives
  • Templates
  • AutoComplete data
  • Rules that are not stored in the mailbox

Outlook data files may be located under Documents or AppData, depending on how the account was configured.

Do not copy OST files as a backup method. Outlook can normally recreate them from the mail server.

OneDrive and Known Folder Backup

If OneDrive was protecting Desktop, Documents and Pictures, much of the user’s data may already be stored in Microsoft 365.

Sign into OneDrive from the new profile and allow it to resynchronise.

Before deleting the old account, confirm:

  • The correct OneDrive account is connected
  • Synchronisation has completed
  • Important files are visible online
  • There are no unresolved sync errors
  • Shared folders and shortcuts have returned

Do not assume a green status icon means every required file has been safely uploaded.

Domain and Microsoft Entra ID Profiles

Business computers may be joined to a traditional Windows domain or Microsoft Entra ID.

In these environments, profile repair can be more complicated because the account identity, device management and local profile are separate components.

A replacement profile may need:

  • The PC to remain joined to the organisation
  • Correct user licensing
  • Intune or Group Policy to reapply
  • OneDrive Known Folder Move to reconnect
  • Outlook and Teams to be reconfigured
  • Line-of-business applications to be retested
  • Certificates and VPN access to be restored
  • Printers and mapped drives to reconnect

Do not remove a business PC from a domain or Microsoft Entra ID as a first troubleshooting step. Doing so can create additional sign-in and management problems.

Check Folder Permissions

A profile may fail if the user no longer has permission to access their own folder.

Right-click the original profile folder, select Properties, and inspect the Security tab.

The user should normally have appropriate access to their own profile. Administrators and SYSTEM also require permissions needed for Windows to manage it.

Permissions can become damaged after:

  • Manual folder moves
  • Restoring data from another computer
  • Disk cloning
  • Domain migration
  • Changing ownership
  • Security software changes

Do not grant unrestricted access to everyone as a shortcut. Correct the specific ownership and permissions instead.

Test with a Clean Boot

If the profile loads intermittently, a third-party service may be interfering.

A clean boot starts Windows with Microsoft services and a reduced set of startup programs.

To configure one:

  1. Press Windows + R.
  2. Enter msconfig.
  3. Open the Services tab.
  4. Select Hide all Microsoft services.
  5. Choose Disable all.
  6. Open Task Manager from the Startup tab.
  7. Disable non-essential startup applications.
  8. Restart the computer.

If the profile works correctly, re-enable services and startup items gradually until the cause returns.

Remember to restore normal startup afterwards.

When to Delete the Old Profile

Do not remove the original profile until all important data and settings have been confirmed in the new account.

Before deleting it, check:

  • Documents and Desktop files
  • Downloads
  • Pictures and videos
  • Browser bookmarks
  • Email archives
  • Outlook signatures
  • Application databases
  • OneDrive sync
  • Saved templates
  • Specialist business software
  • Local encryption keys or certificates
  • Anything stored outside the usual folders

Keep the backup for an agreed period before permanently removing it.

Once everything has been verified, the old account can be removed through:

Settings > Accounts > Other users

For business computers, follow the organisation’s retention, security and data-handling policies.

Should You Rename the Old Profile Folder?

Simply renaming the folder under C:\Users does not correctly rename or repair a Windows profile.

The account remains linked to its original path through the Registry and other settings. Manual folder renaming can cause:

  • Missing files
  • Broken application paths
  • OneDrive errors
  • Sign-in problems
  • Search indexing issues
  • Permission failures

Create a new profile or correctly repair the Registry mapping instead.

Should You Use System Restore?

System Restore may help when the profile problem began immediately after a driver, update or Registry change.

It can restore Windows system files and settings to an earlier point, but it is not a substitute for backing up personal data.

System Restore may not repair a profile that has been physically damaged or overwritten. It can still be worth considering when there is a suitable restore point and the timing clearly matches the failure.

When a Full Windows Repair May Be Needed

Profile repair alone may not be enough if:

  • Multiple accounts are affected
  • Windows services repeatedly fail
  • SFC and DISM report persistent corruption
  • The system drive has errors
  • New profiles also fail
  • Windows updates cannot install
  • The Start menu and Settings fail for every user
  • The computer crashes or freezes during sign-in

Possible next steps include:

  • An in-place Windows repair
  • Storage diagnostics
  • Malware investigation
  • Firmware and driver updates
  • Restoring from a known-good backup
  • A clean Windows installation

Back up all important data before carrying out major repairs.

A Safe Order for Fixing a Corrupt Profile

Use this order to minimise risk:

  1. Restart Windows once.
  2. Confirm whether Windows has loaded a temporary profile.
  3. Check that the original files still exist.
  4. Back up the entire important data set.
  5. Check disk space and drive health.
  6. Run SFC and DISM.
  7. Inspect the ProfileList Registry entries.
  8. Repair a clear .bak conflict where appropriate.
  9. Create a clean account if the profile remains unreliable.
  10. Copy personal files selectively.
  11. Reconfigure applications and cloud services.
  12. Verify everything before deleting the old profile.

The most important rule is simple: protect the data before trying to repair the account.

Need Help Repairing a Windows User Profile?

A corrupt profile can disrupt email, applications, cloud storage and access to business files. Moving data without understanding how the account is configured can also lead to missing settings or lost local information.

Hamilton Group can diagnose Windows sign-in and profile problems, recover user data, rebuild damaged accounts and reconnect Microsoft 365, OneDrive and business applications safely.

Call 0330 043 0069 or visit hgmssp.com to speak with one of our IT experts.