Reputation: 25290
This question has already an answer here:
How do you clear your MRU list in Visual Studio? - 7 answers
How do I remove all the items from the "Recent Project" list in Visual Studio 2008?
Upvotes: 4
Views: 21652
Reputation: 21
An easier solution and safer then using the registry to remove individual projects is to rename the .sln file. In VS 2008, click on the project. You will be prompted that it can no longer be found and do you want to remove it from the list.
Upvotes: 2
Reputation: 7282
Further to Jon Skeet's answer, I have found that you also need to rename the items back to File1, File2 etc.
I deleted the first 3 registry entries, and VS2008 didn't show me any recent projects until I renamed File4 to File 1, File5 to File2 etc.
Upvotes: 3
Reputation: 1504062
Open the registry, and get rid of the values from HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\ProjectMRUList
that you don't want.
Upvotes: 23