Windows 11 quietly turns every profile picture you pick into a stack of static, resized copies — but a long-standing registry workaround lets you redirect those entries at your own file, which means an animated profile picture can now move in the Start menu and on the lock screen. It is not a hidden Microsoft feature; it is an unsupported trick that has been quietly circulating for years.
How Windows 11 normally handles your profile picture
Microsoft’s official route to change your avatar is Settings > Accounts > Your info > Choose a file. Pick a photo and Windows keeps it, along with your last two previous picks, but it never stores your original file as-is. Instead, it generates a set of resized copies and records their paths in the registry under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\AccountPicture\Users\<SID>, in values named Image32, Image48, Image96 and so on up through Image1080 depending on your build.
Because Windows is the one doing the resizing, transparency gets flattened onto a background and animation never stands a chance. The trade-off is convenience: even if you delete the original file, your profile picture survives because Windows is serving its own generated copies.

The registry trick behind an animated profile picture
The trick is simple: point those Image### values away from Microsoft’s generated copies and back at your original file. Once Windows reads your file directly, a transparent PNG keeps its transparency and an animated GIF keeps every moving frame.
This is an unsupported workaround, not a feature Microsoft has been hiding. Microsoft’s own support material has stated for years that animated Microsoft account pictures are not supported, and the same limitation applies to the local account-picture system. The workaround changes the local Windows account picture, not your Microsoft account avatar — upload a GIF to your Microsoft account and it shows just one static frame, since animation support was never built into Microsoft account avatars.
The technique was first spotted by Windows Latest and popularized on X by user PatRyk, who shared a transparent-background example. A ready-made PowerShell tool on GitHub (helloyanis/windows-account-picture-changer) now automates the process, and its documentation confirms that GIFs work as profile pictures once applied.

How to set an animated GIF as your Windows 11 profile picture
First, place your GIF somewhere permanent, such as C:\Users\YourName\Pictures\ProfilePictures\animated-profile.gif. Don’t leave it in Downloads or move it afterward — Windows will be pointing directly at that path, so a moved or deleted file breaks the picture.
Method 1: The easy way, using a ready-made script
Download the raw account-picture-changer.ps1 file from the GitHub repo, right-click it in File Explorer and choose Copy as path. Then right-click the Start button, open Terminal (Administrator), type a single dot (.) and right-click inside the window to paste the path. You should end up with something like
."C:\Users\you\Downloads\account-picture-changer.ps1"
Press Enter.
If Windows blocks the script with an execution policy error, run Set-ExecutionPolicy -ExecutionPolicy Bypass, then retry from the start. The script downloads PsExec automatically, detects your account’s SID, and writes your image path into every Image### value for you, with no manual registry editing required. Sign out or restart to see the animation.
Method 2: The manual way, using PsExec
If you prefer to do it by hand, download PsExec from Microsoft’s Sysinternals site and extract it. Open Command Prompt as administrator, navigate to the extracted folder, and run psexec -i -s regedit.exe.
This last step matters. A normal “Run as administrator” Registry Editor isn’t enough here, because the AccountPicture keys only grant write access to the SYSTEM account, not to Administrators. Skip it and you’ll hit a “Cannot edit Image1080: Error writing the value’s new contents” error.
After psexec -i -s regedit.exe opens a new Registry Editor window running as SYSTEM, navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AccountPicture\Users\<your SID> and replace each Image### value with the full path to your GIF. Sign out and back in, or restart Explorer, if the picture doesn’t update immediately.
What this means for you
For everyday users, this is a fun personalization trick, but it carries real caveats. It is unsupported, so a future Windows update could reset it. If you sync your Microsoft account, that sync can overwrite your custom picture back to a static one — the GitHub tool’s FAQ recommends disabling picture sync or using a local account, which many users prefer anyway. And because the script points at a file path, moving or deleting that GIF breaks the picture until you fix the registry values again.
There is also context here worth noting. Windows 7 shipped with 37 built-in account pictures stored in %ProgramData%\Microsoft\User Account Pictures\Default Pictures, and picking one felt like a small act of identity. Windows 11 leans hard on the Microsoft account instead, and while the Start menu and Taskbar are more customizable than in the past, many users still feel Windows 11 offers less personality than Windows 10.
Microsoft does not offer a Settings toggle for animation, and there is no official support for it. The account-picture system simply reads whatever file path you give it — an old mechanism that kept working the way it always has, even though GIFs and transparent images are extremely common today.
How to revert to a static picture
If the animation stops working or you simply want your normal avatar back, the cleanest fix is to change your picture again through Settings > Accounts > Your info > Choose a file. That repoints the Image### values back to Microsoft’s generated copies. Alternatively, you can edit the registry values back to the generated file paths yourself — again using psexec -i -s regedit.exe if you hit write-permission errors.
Source: Windows Latest
Over to you: Would you actually use an animated GIF as your Windows 11 avatar, or do you worry it will get reset by the next update?



