Visual Studio series ide provides an automatic function to save the list of recently opened projects and files. vs ide saves 25 records by default, then, the sequence is dynamically adjusted based on the frequency and time sequence.
However, sometimes we don't need the list of these files or projects and want to clear them.
These contents are saved in the Registry and can be cleared manually. However, it is more convenient to execute them when a batch is needed.
Save the following content as a batch processing file and execute it. The following 7.1 corresponds to vs 2003, 8.0 corresponds to vs2005, 9.0 corresponds to vs2008
@ Echo off @ Reg Delete hkcu \ Software \ Microsoft \ visualstudio \ 7.1 \ filemrulist/VA/f @ Reg Delete hkcu \ Software \ Microsoft \ visualstudio \ 7.1 \ projectmrulist/VA/f @ reg Delete hkcu \ Software \ Microsoft \ visualstudio \ 8.0 \ filemrulist/VA/f @ Reg Delete hkcu \ Software \ Microsoft \ visualstudio \ 8.0 \ projectmrulist/VA/f @ Reg Delete hkcu \ SOFTWARE \ Microsoft \ visualstudio \ 9.0 \ filemrulist/VA/f @ Reg Delete hkcu \ Software \ Microsoft \ visualstudio \ 9.0 \ projectmrulist/VA/F