Recently, Microsoft Visual Studio encountered a problem as soon as it opened the website and needs to be closed. Send an error report to Microsoft. I checked online materials. Some people said it was a cache problem. It is recommended that you delete all the cached files of Microsoft Visual Studio and reset the development environment. No. Save the project and uninstall Microsoft Visual Studio to reinstall it.
Clear the recently opened project as follows:
Manual Operation:
1) Delete recently opened files
Run regedit, open HKEY_CURRENT_USER/software/Microsoft/visualstudio/8.0/filemrulist, and then delete the corresponding key value on the right.
2) Delete recently opened Projects
The operation is the same as above, but the key value location is different HKEY_CURRENT_USER/software/Microsoft/visualstudio/8.0/projectmrulist
Automatic cleanup:
Save the following code in a file with the extension BAT, and double-click it to clear it. (Clear all)
@ Echo off
@ Reg Delete hkcu/software/Microsoft/visualstudio/8.0/filemrulist/VA/F
@ Reg Delete hkcu/software/Microsoft/visualstudio/8.0/projectmrulist/VA/F
Note: the second line of the code is to clear the list of recently opened files, and the third line is to clear the list of recently opened projects, which can be executed as needed.
Reset the development environment as follows:
Tools menu -- Import and Export settings (Import and Export settings ...) -- reset all settings -- no, do not save the settings (the last one) -- select your settings, such as Visual C # development settings (Visual C # development settings) -- finish)
This method cannot solve all similar problems, but you can try it!
Reproduced in: http://mybloggers.blog.163.com/blog/static/10038650920102244286465/
Another method is as follows:
Tools menu -- Import and Export settings (Import and Export settings ...) -- reset all settings -- yes. Save all files in the path "store my settings files in this directory" under my current settings and delete them. To ensure security, you can back up the files in this directory first.