I want to clear the list of projects on the start page...how do I do this? I know I can track it down in the registry, but is there an approved route to go?
10 Answers
There is an MSDN article here which suggests that you just move the projects to a new directory.
However, as you mentioned, the list of projects is kept in the registry under this key:
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\<version>\ProjectMRUList
and the list of recent files is kept in this key:
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\<version>\FILEMRUList
Note For Visual Studio 2015:
The location has changed. You can check out this answer for details.
Some people have automated clearing this registry key with their own tools:
Visual Studio Most Recent Files Utility
Add-in for cleaning Visual Studio 2008 MRU Projects list

- 1
- 1

- 3,146
- 31
- 34
-
1and HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\
\FILEMRUList for Recent Files. – DotNetWala Jan 11 '12 at 17:51 -
@JayD Thanks. I added that to the answer. – Dusty Campbell Jan 11 '12 at 20:39
-
This led me to the answer to my problem: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\
\NewProjectDialog\MRUSettingsLocalProjectLocationEntries to clear the Locations drop down for the new Project dialog. – CigarDoug Aug 20 '14 at 11:55 -
"move the projects to a new directory." on the msdn article.......what messed up advice...thanks for this real answer. – granadaCoder Dec 09 '14 at 19:54
-
For windows 7 this doesn't remove the recent items in the start menu. This article tells how to do that: http://windows.microsoft.com/en-us/windows7/clear-lists-on-the-start-menu-and-taskbar – TechSavvySam Feb 24 '15 at 14:02
-
@TechSavvySam The question was not about clearing the list in the Start menu. It is specifically about clearing the "Recent Projects" list in Visual Studio. – Dusty Campbell Apr 14 '15 at 14:07
-
If ProjectMRUList has e.g. File1, File2, File3, ...File7, and in regedit you delete File3, then File4 through File7 may vanish the next time you start VS. I didn't try to replicate this, but it sure looks like it. – Camille Goudeseune Feb 18 '16 at 23:11
-
In Express editions, you can search it in Registry Editor, it is placed in somewhere like: `HKEY_USERS\
\Software\Microsoft\VCSExpress\ – Fredrick Gauss Jun 02 '16 at 12:34\ProjectMRUList`. -
See here for VS 2015: http://stackoverflow.com/questions/33943943/clear-recent-projects-list-in-visual-studio-2015 – Thibault D. Oct 05 '16 at 12:38
PowerCommands for Visual Studio 2008
Features
- Clear Recent File List
- Clear Recent Project List
- Clear All Panes
- Copy Path
- Email CodeSnippet
- Insert Guid Attribute
- Show All Files
- Undo Close
- Collapse Projects
- Copy Class
- Paste Class
- Copy References
- Paste References
- Copy As Project Reference
- Edit Project File
- Open Containing Folder
- Open Command Prompt
- Unload Projects
- Reload Projects
- Remove and Sort Usings
- Extract Constant
- Transform Templates
- Close All

- 1
- 1

- 3,841
- 3
- 38
- 59
If you try opening up a project that can no longer be found, Visual Studio will prompt you for permission to remove it from the MRU list. So if you temporarily rename an appropriate top level folder to fake the projects' disappearance, you can get rid of the projects one by one.

- 19,321
- 13
- 57
- 73
In Visual Studio 2015 all the history lists (including search history, file MRU and project MRU) are now located at:
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0\MRUItems
You will see a different GUID folder for each list, and a sub-folder called Items
in each of them. Find the Items
folder that contains the relevant list, and just delete its parent GUID folder.
Visual Studio will re-create the GUID folder together with a new Items
child folder, next time it wants to add something to the list again.

- 5,431
- 2
- 34
- 49
Note: This answer is specific to Visual Studio 2010.
If you don't want to manually edit the registry, you can use PowerCommands for Visual Studio 2010.
PowerCommands 10.0 is a set of useful extensions for the Visual Studio 2010 adding additional functionality to various areas of the IDE.
The specific command for clearing the registry from the extension is:
Clear Recent Project List This command clears the Visual Studio recent project list. The Clear Recent Project List command brings up a Clear File dialog which allows any or all recent projects to be selected.
The PowerCommands can be installed with the Visual Studio extension manager: Tools > Extension Manager > Online Gallery: search for PowerCommands for Visual Studio 2010.

- 37,266
- 20
- 108
- 140
I found the MRU editor from Code Project a great tool for that. No problems with it, and it works on 2003, 2005, and 2008.
Try Recently Used Files: a free addin for Visual Studio that manages MRU files on a per-project basis: Supported for VS 2010, 2012, 2013.
For Visual Studio 2012, 2013: http://visualstudiogallery.msdn.microsoft.com/a61cbd1d-b5a2-490b-a6bb-f0ea3ecf214a
For Visual Studio 2010: http://visualstudiogallery.msdn.microsoft.com/45283881-5a62-4dc1-8ffb-4cbc02709947

- 1
- 1
For Visual Studio 2013: Open the Run dialog (Press Win + R) type: regedit navigate to: HKEY_CURRENT_USER > Software > Microsoft > VisualStudio click 12.0 then the files will show up on the right side. Look for the "LastLoadedSolution", right click then click Modify change the value to 0.
This worked for me.
I'm not sure if this solution has been posted somewhere here, but if you have VS 2013 Update 5 you can open start page, and right click project below "Recent" list, and choose "Remove from list". I don't know how about other VS versions, maybe this feature is available.

- 405
- 4
- 17
I had this issue as applied to VS 2017 where you do not have any MRU items in the registry as in the previous versions. The solution was, on the other hand, simple: go to "Tools->Extensions and Updates" and install "Power Commands for Visual Studio". After they have been installed, your File menu will look as shown below.
Just click the menu item to clear the project MRU.

- 717
- 6
- 20
-
2This solution stopped working after update 15.5.1 was installed. Does not have any symbol in the MRU menu any longer. Disable/Enable or Uninstall/Install do not help. 15.5.1 destroyed this feature. – Alex Konnen Dec 13 '17 at 18:51