How do you clear your MRU list in Visual Studio?

前端 未结 10 1278
忘了有多久
忘了有多久 2020-12-29 18:31

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条回答
  •  感动是毒
    2020-12-29 18:40

    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\\ProjectMRUList
    

    and the list of recent files is kept in this key:

    HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\\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

提交回复
热议问题