How to clear windows run history

Tuesday, November 3, 2009 Leave a Comment

Windows stores the list of the commands we execute from Run window. This can be seen by clicking on the drop down list in Run window.



This history of command is stored in a per user key in registry database. One can clear this command history by cleaning up the entries under this registry key.

This registry key is

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU

So to cleanup command history we can simply run the below command from command prompt.

reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /va /f 


Note that after running the above command you would still be able to see history for the current login session. Once you logoff and login back you won't be able to see the history.

6 comments »

  • D2 said:  

    2nd way dor windows 7:D

    Clearing "My Recent Documents" list also clears
    the RUN drop down list.

    Right click Start,
    then Properties,
    then Customize... button,
    then Advanced tab,
    then click "clear list" button at the bottom.

    Www.PakiDev.Com

  • Anonymous said:  

    Are you guys talking about Windows 7? Deleting RunMRU does not delete the "suggested" list of commands. As far as the "2nd way", "Properties" in Windows 7 brings "Taskbar and Start Menu Properties" that has three tabs; Taskbar and Start Menu have their own Customize buttons. Please verify your solutions before posting them.

  • Techblogger said:  

    Anonymous,

    The solution posted in this article works for Windows 7 too.. just pause few seconds after deleting the regkey and open 'Run'.. I have just tried this on my windows 7 machine and it has worked fine...

    I am not sure about the solution posted by D2 above..

  • Anonymous said:  

    Solution works on 32 and 64 bit windows 7... Thanks!

  • Frey said:  

    You just have to right click the start button then properties uncheck the boxes and thats it.

  • Techblogger said:  

    Frey, thanks for adding the comment.. Yes we can do the same from UI too..But in case if you want to clear the run history repeatedly then running this command from a script is a good idea..suppose if I want to clear the cache everytime I login, then running this reg command from login script is a simpler solution compared to the UI one..

  • Leave your response!