/Command (devenv.exe)
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Executes the specified command after launching the Visual Studio integrated development environment (IDE).
Syntax
devenv /command CommandName
Arguments
CommandName
Required. The complete name of a Visual Studio command or its alias, enclosed in double quotation marks. For more information about command and alias syntax, see Visual Studio Commands.
Remarks
After startup is complete, the IDE executes the named command. If you use this switch, the IDE does not display the Visual Studio Start Page on startup.
If an add-in exposes a command, you can use this switch to launch the add-in from the command line. For more information, see How to: Control Add-Ins By Using the Add-In Manager.
Example
This example launches Visual Studio and automatically runs the macro Open Favorite Files.
devenv /command "Macros.MyMacros.Module1.OpenFavoriteFiles"