Visual Studio freezes or hangs on startup

Viewed 65159

I have been using Visual Studio for a while and found that when I open visual studio and open the project all the files that were open last time remain open.

This causes my Visual Studio to freeze or crash on startup.

I am using a lot of plugins in my installation and wonder if there is a way to prevent this from happening.

14 Answers

If your Visual Studio 2019 is stuck due to a faulty extensions, here is a way to get it back to normal.

First, start Visual Studio in safe mode (devenv.exe /SafeMode) and uninstall the troublemaker.

Hereafter, if Visual Studio 2019 is still unresponsive, you need to do the following:

  • Browse to %LOCALAPPDATA% and go to Microsoft -> VisualStudio -> 16.0_bb6da863 (or whatever version you have installed)
  • Delete the following folders (all cache related):
    • ComponentModelCache
    • ImageLibrary
    • MFECacheBackup
    • Extensions\*.cache

For reference:

enter image description here

Hope it helps you and safe a VS repair/reinstall.

Happy coding :-)

I have got recently VS2017 stucked on start up . so I did this and worked for me : 1 - start cmd as admin : run the following:

cd "C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE" devenv.exe /SafeMode

2- once VS is started , go to Tools => Extentions and Updates : then uninstall all plug-ins that installed recently ( notice the installed date ) and unnecessary ones)

This helped me: I deleted all SDK, JDK & JRE folders that had been rooted in VS settings before. After that I used devenv.exe /ResetUserData and devenv.exe /ResetSettings.

Worked for me on Visual Studio 2015.

This is becuase of rendering IDE UI try this hope it will resolve

1- Open "Visual Studio"

2- Select "Options" from the top menu

3- Navigate to "Environment => General"

4- Unchecked "Optimize rendering for screens with different pixel densities"

5- Restart visual studio

Related