Search code examples
c#visual-studio

how to run visual studio without plugin and all third party feature


i have installed many third party plugin add-ins in my visual studio.

now i want to run a instance of visual studio without all plugin addons and third party feature

just like mozilla firefox

how i can run visual studio without all plugin or add-ons. are their any method exist like other application


Solution

  • All versions of visual studio can be started with a set of arguments.

    Using devenv.exe /SafeMode allows you to run any version of visual studio (devenv.exe) in SafeMode that will disable 3rd party plugins.

    You can either run devenv.exe /SafeMode using the command line or by creating a new shortcut. The devenv.exe executable is located in the \Common7\IDE\devenv.exe directory under the directory your visual studio is installed.