I need to run web.exe file from my developer command prompt in Visual Studio 2013. By default, the command prompt is not installed in Visual Studio 2013.
Previously,
I used a modified version of this answer - based on my experiences adding it to VS 2010:
Tools >> External Tools in Visual StudioAddVisual Studio Command &Prompt
&P Makes P a alt-shortcut key (when menu active)C:\Windows\System32\cmd.exe\k "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\vsvars32.bat
/k keeps a secondary session active so the window doesn’t close on the .bat file$(ProjectDir) (from the dropdown)Now you have command prompt access under the Tools Menu.
See also: Add command prompt to Visual C# Express 2010