Resolving MS Paint Installation Error 0x80070005 on Windows 11
In Windows 11, Microsoft Paint has transitioned from a legacy system component to a decoupled app managed via the Microsoft Store. While this allows for more frequent feature updates, it also introduces modern app deployment issues. The error code 0x80070005 is a standard Windows "Access Denied" message. It typically indicates that the Microsoft Store or the Windows Update service lacks the necessary file-system permissions to write data to the WindowsApps folder. This tutorial explores the architectural reasons for this failure and provides technical solutions to reclaim your permissions.
Table of Content
- Purpose of Repairing Permissions
- Common Use Cases
- Step by Step: Fixing the Error
- Best Results for System Stability
- FAQ
- Disclaimer
Purpose
The primary purpose of this guide is to bypass Folder Ownership conflicts that prevent Windows 11 from installing built-in applications. When MS Paint fails with error 0x80070005, it often means the security descriptors for the local app repository are corrupted. By resetting the Microsoft Store cache and re-registering the application packages, we can restore the link between your user account and the system's installation directories without a full OS reinstall.
Use Case
This troubleshooting logic applies when:
- Fresh Installations: You have uninstalled the original Paint and cannot reinstall it from the Store.
- Major Updates: A Windows 11 feature update has broken the symbolic links to the Paint executable.
- Corrupted AppX Packages: The system identifies Paint as "installed" but returns an error when you attempt to launch or repair it.
- Restricted Environments: Group policies or third-party "debloater" scripts have inadvertently locked the
C:\Program Files\WindowsAppsdirectory.
Step by Step
Reset the Microsoft Store Cache
Permissions errors often start with a stalled cache. Press Win + R, type wsreset.exe, and press Enter. A blank command prompt will appear; wait for it to close and for the Store to open automatically.
Repair via PowerShell (Re-registering Apps)
If the cache reset fails, you must re-register the Microsoft Paint package using an elevated PowerShell terminal:
- Right-click the Start button and select Terminal (Admin).
- Paste the following command to target the Paint package:
Get-AppxPackage Microsoft.MSPaint | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppxManifest.xml"} - Restart your PC and attempt the installation again.
Fix Permissions on the Packages Folder
If the error persists, the local app data folder may have incorrect "Owner" settings:
- Navigate to
%LOCALAPPDATA%\Packagesin File Explorer. - Right-click the folder and select Properties > Security > Advanced.
- Ensure your user account or "SYSTEM" has Full Control.
Run the Windows Store Apps Troubleshooter
Windows 11 includes a dedicated tool for this. Go to Settings > System > Troubleshoot > Other troubleshooters and run the "Windows Store Apps" tool to automatically detect and fix security descriptor issues.
Best Results
| Technique | Success Rate | Complexity |
|---|---|---|
| WSReset | Low | Beginner |
| PowerShell Re-register | High | Intermediate |
| ACL Permissions Reset | Very High | Advanced |
FAQ
Is 0x80070005 always related to MS Paint?
No. This is a generic Windows error code for "Access Denied." It can happen with any Microsoft Store app or even with Windows Update if a service doesn't have the right to modify a specific folder.
Why did Microsoft make Paint a Store app?
Decoupling Paint from the core OS allows Microsoft to add features like "Layers" and "Cocreator" (AI) without requiring a full Windows Update. It makes the app more agile, but more prone to Store-related permission bugs.
Can I just download an .exe for Paint?
Official Windows 11 Paint is an AppX/MSIX package. While you can find third-party "Classic Paint" installers, they are not officially supported and won't receive the new Windows 11 features.
Disclaimer
Manually changing permissions on C:\Program Files\WindowsApps or %LOCALAPPDATA%\Packages can cause other Microsoft Store apps to fail if done incorrectly. It is highly recommended to create a System Restore Point before attempting any advanced PowerShell or permission-based fixes. This guide is updated for Windows 11 builds current as of 2026.
Tags: Windows11, MSPaint, MicrosoftStore, ErrorFix
