VC# Express 2005 - Remove Recent Projects

I am seeing projects listed in thr Recent Projetcs list mulitple times. How can we clean up the start page recent project list? There is no delete in the express version.
[171 byte] By [Kendsr] at [2008-1-12]
# 1
Unfortunately, there is no way to do this without editing the registry directly. We will be adding this in the next version.

thanks,

JamesLau at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 2
Unfortunately, removing items from the Start Page is not supported. However, if you have a strong need to do this and you feel comfortable tweaking the registry, you can delete entries under HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\ProjectMRUList\ to clean up your MRU list.

Let me know if you need more help.

JamesLau at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 3
Thanks James. I'm not keen on hacking the registry so I have taken to removing the project folder so that when the project is selected from the "recent projects" list, it can't find it. I then get a pop-up to remove the entry from the regisry. When I say ok, it disappears from the list.
Kendsr at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 4

If you delete (or move/rename) the project's files, then attempt to access the project through the Start Page the IDE asks if you want to remove all references.

I have used this successfully in VB and VC# Express 2005 editions.

Tonpal at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 5

The easiest and most efficient way is to delete all the entries under

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\ProjectMRUList\

Deleting those entries is probably the simplest form for registery "hacking" you can do, and as long you don't do anything else this will not present any danger to your system.

Bonavox at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 6
I dont have that entry in the registry. I assume I need administrative privileges to do that?
AldwinEnriquez at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 7

There is no need to hack into the registry!

Simply delete or rename the project subdirectory then try to open the project from the start page. The IDE will tell you that it cannot find the project and ask if you want to remove references to it. Say 'yes' and it is done.

You can then rename the directory back if you want to.

Tonpal at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 8
The regkey turned out to be HKCU/Software/Microsoft/VWDExpress/8.0/ProjectMRUList
Jackrv at 2007-9-9 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...