Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2010 Extension Manager crashes

After installing a bunch of extensions to try out I restarted VS 2010 and it started crashing. Unfortunately, it consistently crashes when opening Tools | Extension Manager. Any ideas how to fix and avoid a complete uninstall/reinstall?

Event log has this: Application: devenv.exe Framework Version: v4.0.30319 Description: The process was terminated due to an unhandled exception. Exception Info: System.AggregateException Stack: at System.Threading.Tasks.TaskExceptionHolder.Finalize()

like image 252
Alexey Avatar asked Dec 08 '22 02:12

Alexey


2 Answers

Try using safemode

> devenv.exe /SafeMode

This will start Visual Studio with all add-ins/extensions disabled.

like image 160
Dirk Vollmar Avatar answered Jan 04 '23 05:01

Dirk Vollmar


Try renaming the folder that contains the extensions (and thus, temporarily, removing them).

%LOCALAPPDATA%\Microsoft\VisualStudio\10.0\Extensions

This will show if you have a VS2010 installation problem, or it is due to an extension (or the interaction of two extensions).

If it is VS2010, try an installer repair, if it is the extensions, restore, and remove half and repeat until isolated.

like image 44
Richard Avatar answered Jan 04 '23 04:01

Richard