Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

People also ask

How do I disable a plugin in Visual Studio?

Uninstall or disable an extensionFind the extension and click Uninstall or Disable. Restart Visual Studio to unload a disabled extension.

How do I start Visual Studio in safe mode?

Starts Visual Studio in safe mode, loading only the default environment and services.

How do I check my Visual Studio workloads?

In the Visual Studio Installer, choose the Workloads tab, and then select or deselect the workloads that you want. To add more components than a workload installs, choose the Individual components tab, and then select or deselect the individual components that you want.

How do I run Visual Studio?

Run the program To start building the program, press the green Start button on the Visual Studio toolbar, or press F5 or Ctrl+F5. Using the Start button or F5 runs the program under the debugger. Visual Studio attempts to build and run the code in your project.


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.

You may also want to look at devenv.exe /ResetSkipPkgs if you are having problems.


You can run the Visual Studio in safe mode, using the /SafeMode switch from the command line:

"C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe" /SafeMode

This will prevent all third-party packages and add-ons from loading. If you find yourself needing to do this frequently, you can even create a new shortcut to Visual Studio and add this switch to the target path so that double-clicking that shortcut automatically opens Visual Studio in safe mode.


For VS 2017, open a command window (Win+R) and run the following command:

C:\Program Files\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv /SafeMode

In 64-bit machine:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv /SafeMode

*Change Community with the respective version.


A other way is to reset the settings of Visual Studio

D:\VisualStudio2013\Common7\IDE\devenv.exe /resetsettings

In other cases VisualStudio is installed on a different harddrive.


You have to use /SafeMode switch for devenv.exe.

More at: http://msdn.microsoft.com/en-us/library/ms241278%28VS.80%29.aspx