How do I disable plugins from command line on visual studio?

performance, resharper, visual-studio-2008

Solution

You are probably looking for the `/SafeMode` command line switch:

devenv.exe /SafeMode

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

Problem

Resharper is killing me for some reason on startup, I just need to get in, is there a command line switch for load without addins?

Original source