Clear MS Paint Recent Files History in Windows 11/10

The MS Paint app maintains a list of the most recently opened files. The list, shown when you click on the File menu, contains the last nine files you opened. This article tells you how to clear the Paint MRU history in Windows 10 and Windows 11.

clear mspaint recent history windows 10
Windows 10 Paint – Recent Files History

Clear MS Paint Recent Files History

Windows 10

Windows 10 (v21H2) still has the classic MS Paint app, whose MRU history can be cleared via the registry.

  1. Start Regedit.exe and go to:
    HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Applets\Paint\Recent File List

    clear mspaint recent history windows 10/11

  2. To remove selected items from Paint history, in the right pane, delete the corresponding values.
  3. To delete the entire listing (“File1” to “File9”), right-click “Recent File List” and choose Delete.
  4. Exit the Registry Editor.

Via Command-line

To automate the above using command-line, run the following command:

reg delete "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Applets\Paint\Recent File List" /va /f

Windows 11

Windows 11 includes the modern Paint app (also known as “Store app”) that doesn’t use the conventional registry to store its settings. Modern apps use a per-application registry hive instead. Also, in the modern Paint app, the Recent entries are listed under a menu option called “Recent.”

clear mspaint recent history windows 11
Windows 11 Paint (Store app) – Recent Files History

To clear the recent files MRU in the modern Paint app, you have two options:

Option 1: Reset the Paint app

  1. Open Settings → Apps → Apps & Features.
  2. Scroll down until you see “Paint”
  3. Click on the settings button (shown with three dots) and click Advanced options.
  4. In the resulting screen, click Reset.

tips bulb iconIf you’re not fond of the modern Paint app, you can get back the Windows 10 Classic Paint on Windows 11.

That’s it. The Recent files history, as well as your customizations, are cleared in the modern Paint app. Resetting an app to clear the recent MRU history is overkill, though. That’s why I have provided another method below.


Option 2: Clear Paint app MRU without Resetting the app

As said earlier, modern apps use per-application registry hives, instead of storing data in conventional registry hives. You can clear the modern Paint app’s history by loading the application hive using Regedit.exe or Reg.exe and clearing the MRU entries manually.



  1. Close all instances of Paint. And make sure mspaint.exe is not running/suspended state. If Paint is running, this method won’t work, as Paint will repopulate the recent files history from memory.
  2. Open Settings → Apps → Apps & Features.
  3. Scroll down until you see “Paint”
  4. Click on the settings button (shown with three dots) and click Advanced options.
  5. Click “Terminate” to close the MS Paint process(es) if it’s running.
  6. Start the Registry Editor (regedit.exe)
  7. Select HKEY_LOCAL_MACHINE
  8. From the File menu, click “Load Hive…”
  9. Select the following application hive in the browse dialog:
    "%LocalAppData%\Packages\Microsoft.Paint_8wekyb3d8bbwe\SystemAppData\Helium\User.dat"
  10. Type a name for the loaded Hive — e.g., PaintApp
  11. Go to the following branch – assuming that you used “PaintApp” as the name for the loaded hive.
    HKEY_LOCAL_MACHINE\PaintApp\Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Recent File List

    clear mspaint recent history windows 10/11 - hive

  12. Delete all the entries from File1 to File9. Or you may clear items selectively.
  13. Select the “PaintApp” key.
  14. From the File menu, click Unload Hive…
    clear mspaint recent history windows 10/11 - hive
  15. Close Regedit.exe

Open the Paint app and check if the recent files history is cleared.

Using command-line/Batch

To automate “Option 2” via command-line, run these commands from admin Command Prompt:

clear mspaint recent history windows 10/11 - hive

TASKKILL /F /IM mspaint.exe /T
REG LOAD HKLM\PaintApp "%LocalAppData%\Packages\Microsoft.Paint_8wekyb3d8bbwe\SystemAppData\Helium\User.dat"
REG DELETE "HKLM\PaintApp\Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Recent File List" /va /f
REG UNLOAD HKLM\PaintApp

Start the Paint app now. The “Recent” submenu should be grayed out as there are no recent entries to display!
clear mspaint recent history windows 10/11 - hive

I hope the above tips were useful! Let’s know your comments. The methods listed in the article were last tested on Windows 10 21H2 and Windows 11 21H2 systems.


One small request: If you liked this post, please share this?

One "tiny" share from you would seriously help a lot with the growth of this blog. Some great suggestions:
  • Pin it!
  • Share it to your favorite blog + Facebook, Reddit
  • Tweet it!
So thank you so much for your support. It won't take more than 10 seconds of your time. The share buttons are right below. :)

Ramesh Srinivasan is passionate about Microsoft technologies and he has been a consecutive ten-time recipient of the Microsoft Most Valuable Professional award in the Windows Shell/Desktop Experience category, from 2003 to 2012. He loves to troubleshoot and write about Windows. Ramesh founded Winhelponline.com in 2005.

Leave a Comment