Fix ERROR_NO_ASSOCIATION (0x00000483) in Windows 10/11
This error means Windows can't find a program to open your file. We'll fix it fast—from a simple reboot to resetting file associations.
What's the ERROR_NO_ASSOCIATION (0x00000483)?
This one's annoying. You double-click a file—maybe a .jpg, .pdf, or .doc—and Windows throws up this error. It says no program is linked to that file type. But you know there is. Something got messed up in the registry or the file association settings.
I've seen this happen after a big Windows update (like 22H2 or 23H2), or after uninstalling an app that was set as the default for that file type. It can also pop up if you manually changed the "Open with" setting and then removed that program.
Let's fix it. Start with the simplest thing—stop if it works.
Fix 1: Quick Reboot (30 seconds)
Sounds dumb, but it works more often than you'd think. A restart clears temporary glitches in the file association cache.
- Close all open windows.
- Click Start, then the Power icon.
- Choose Restart.
Try opening the file again. If it works, you're done. If not, move to Fix 2.
Fix 2: Reset Default Apps (5 minutes)
Windows has a built-in "reset" for all file associations. This won't remove your apps or files—it just cleans up the registry entries that tell Windows what program to use for each file type.
Step 1: Open Settings
Press Windows + I on your keyboard.
Step 2: Go to Default Apps
Click Apps (left sidebar) then Default apps.
Step 3: Reset everything
Scroll down to the bottom. Click the Reset button under "Reset all default apps." Confirm when it asks.
This can take a minute or two. After it's done, you'll need to reassign your preferred apps for file types. For example, set Photos for JPEG files, or Edge for HTML.
Try opening the file again. If it still fails, go to Fix 3.
Fix 3: Manual Registry Fix (15+ minutes)
This is for when the built-in reset doesn't cut it. We're going to delete the corrupted file association keys in the registry.
Warning: Messing with the registry can break things. Back it up first. I'll show you how.
Step 1: Backup the registry
- Press Windows + R, type
regedit, and hit Enter. - Click File → Export.
- Choose a location (like your Desktop), name it
registry_backup.reg, and make sure "All" is selected under Export range. - Click Save.
Step 2: Delete the bad association
Let's say it's a .pdf file that's broken. Open regedit again, and go to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pdf
Right-click the .pdf folder (key) and choose Delete. Confirm yes.
Repeat for any file extension that's giving you the error. Common ones: .jpg, .png, .docx, .xlsx, .html.
Step 3: Reassign the app
- Right-click the file that had the error.
- Choose Open with → Choose another app.
- Pick the correct program (like Adobe Acrobat for .pdf).
- Check the box "Always use this app to open .pdf files."
- Click OK.
If the registry deletion doesn't work—or you want a cleaner approach—use PowerShell:
Alternate Step 2: PowerShell method
Open PowerShell as Administrator (right-click Start → Windows Terminal (Admin)).
To reset all file associations to Windows defaults, run:
Get-AppxPackage -AllUsers | ForEach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
This re-registers all built-in Windows apps. It takes a few minutes. Then reboot.
Try opening the file again. 9 times out of 10, this kills the error for good.
If nothing works
You might have a deeper issue—like a corrupted user profile or a malware infection. Run a full scan with Windows Defender (or your preferred AV). If the error pops up for system files (like .exe or .dll), consider a System Restore point from before the problem started.
That's it. You should be back to opening files without that stupid error. Let me know if it helped.
Was this solution helpful?