Steven Spielberg
Steven Spielberg

Reputation:

Run Visual Studio 2010 with two commands

I want to run Visual Studio 2010 with two commands:

devenv.exe /nosplash

devenv.exe /safemode

How can I run Visual Studio 2010 with both commands? Meaning, I need to run an instance where both commands are executed with them.

How do I do this with Visual studio 2010?

Upvotes: 0

Views: 1397

Answers (2)

Chris W
Chris W

Reputation: 3314

Run it as:

devenv.exe /nosplash /safemode

It seems to work OK when I run it.

Upvotes: 1

John Parker
John Parker

Reputation: 54415

Unless I'm missing something here, simply type...

devenv.exe /nosplash /safemode

...and all should be well. (Tested and works fine on my set up.)

Upvotes: 0

Related Questions