Fix Windows User Account Picture Not Showing Correctly

Windows Errors Beginner 👁 12 views 📅 Jun 20, 2026

Your profile pic not updating or stuck on default? Almost always a cache issue or wrong file path. We'll fix it fast.

Quick Fix (30 seconds) – Clear the Cache

Most of the time, Windows just shows a stale cached version of your old picture. The culprit here is almost always corrupt cache files. Here's how to nuke them fast:

  1. Press Windows key + R, type %appdata%\Microsoft\Windows\AccountPictures and hit Enter.
  2. Delete everything in that folder. You'll see a bunch of random-named .png and .jpg files – those are your old profile pics.
  3. Close File Explorer and open Settings > Accounts > Your Info.
  4. Click Browse for one and pick your picture again.

That's it. If it still shows the old pic, reboot once. Windows loves caching these things. This fix works on Windows 10 version 2004 and newer, and all Windows 11 builds.

Don't bother with the Reset button in Settings – it rarely helps. Real fix is clearing those cache files manually.

Moderate Fix (5 minutes) – Rename the Account Pictures Folder

If the quick fix didn't stick, Windows is probably refusing to refresh the folder. You need to force it by renaming the entire directory. This forces Windows to create a fresh folder when you restart.

  1. Open File Explorer and go to %appdata%\Microsoft\Windows\.
  2. Right-click the AccountPictures folder, choose Rename, and call it AccountPictures.old.
  3. Restart your PC – not just log off, but actually restart.
  4. After login, Windows will create a brand new empty AccountPictures folder.
  5. Go to Settings > Accounts > Your Info and set your picture again.

This approach works especially well if you had the same profile pic for months and it suddenly went blank or showed a grey silhouette. I've seen this fix work on Windows 10 22H2 and Windows 11 23H2.

One gotcha: if you have multiple user accounts on the same machine, each user's cache is separate. You'll need to repeat this for each account that's broken.

Advanced Fix (15+ minutes) – Registry Hack or Local Policy Reset

When all else fails, something's stuck deeper. Two things usually cause this: a corrupt registry key or a mangled local group policy. Let's check both.

Step 1: Force Remove the Picture via Registry

Open Registry Editor as admin (type regedit in Start menu, right-click, Run as Administrator). Then go to:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AccountPicture\Users\<your SID>

Your SID is a long string that looks like S-1-5-21-.... To find yours, open Command Prompt and type whoami /user – it prints your SID.

Once you're in that registry key, you'll see subkeys named Image32, Image64, etc. Delete all of them. Then close regedit and restart. After reboot, set your picture again in Settings.

Yes, you could also delete the entire registry key for your SID, but that's overkill and can cause weird login screen glitches. Stick to deleting just the image values.

Step 2: Check Local Group Policy (Windows Pro/Enterprise only)

If you're on Windows Pro or Enterprise, a GPO might be locking your account picture. Open gpedit.msc and go to:

Computer Configuration > Administrative Templates > System > User Profiles

Look for Turn off the default picture for the user account tile. If it's set to Enabled, Windows hides profile pictures entirely. Set it to Not Configured and restart.

I've only seen this cause problems on corporate laptops where IT pushed a lock-down policy. On Windows 10/11 Home, this step doesn't apply.

Step 3: Last Resort – Create a New Local Account

If nothing above works, your user profile is probably corrupted. Create a new local admin account, copy your files over, and use that instead. Here's the command – run as admin in PowerShell:

New-LocalUser -Name "TempFix" -Password (ConvertTo-SecureString "YourPass123!" -AsPlainText -Force) -UserMayNotChangePassword:$true
Add-LocalGroupMember -Group "Administrators" -Member "TempFix"

Then log into that new account and see if the profile picture works. If it does, your old profile has issues. Migrate your documents manually – don't rely on the Windows easy transfer tool, it's flaky.

Real-world trigger: This error often happens after a Windows Update (like KB5021234 or KB5034441) or after you change your Microsoft account profile picture online. The local cache doesn't sync properly. I've also seen it after running third-party disk cleaners like CCleaner that nuke cache files too aggressively.

One More Thing – Check Your Picture Format

Windows prefers JPEG or PNG. If you're using a BMP or TIFF file, it might not show up in the account settings. Convert it to JPEG (I use Paint: open, Save As, JPEG). Also keep the file under 2MB – larger files sometimes just don't load.

That's the whole playbook. Start with the cache clear, move to folder rename, then dive into registry if you must. Nine times out of ten, the first fix works. When it doesn't, the second one almost always does.

Was this solution helpful?