How to Run Visual Studio Without Plugin and All Third Party Feature

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

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.

Command line to start visual studio and disable add ins/Extensions for that instance

Try safemode

devenv.exe /safemode

which

Starts Visual Studio in safe mode, and loads only the default environment and services, and shipped versions of third-party packages.

See http://msdn.microsoft.com/en-us/library/xee0c8y7.aspx

Any custom/third party Visual C# text box Controls with extra features?

You're looking for Scintilla and its .Net wrapper.

Visual Studio 2017: Solution Explorer and other ancillary tabs/windows always closing and having to be re-opened

To Optimize Visual Studio Startup Time, VS2017 has introduced new feature Manage Visual Studio Performance under help menu. Using this option, one can override startup behavior of tool window like error list, package manager console etc.

VS2017 Startup Time optimization

For more information, refer Optimize Visual Studio Startup Time.



Related Topics



Leave a reply



Submit