When I install “real” editions, the command prompt exists as a tool, but not in the express edition?
How can I open the special command prompt, and have easier access to the various command-line tools that ship with Visual Studio and the .NET framework?
See Also
- Add Command prompt in VS 2008 Express Edition manually – missing some essential steps, and never completely answered; also, 2008 specific
- Visual Studio Command Prompt vs. Regular Command Prompt?
The VS command prompt is not a standaloneshell, but the standard
cmd.exewith some EnvironmentVariables setup — throughvcvarsall.batCharmingly,
vcvarsall.batonly ships with the c++ edition, and resides in theMicrosoft Visual Studio 10.0\VCfolder.So if you haven’t installed VS c++ Express — and you want to access the shell, you probably have to install VS c++ Express; that’s what I did, anyway.
Tools >> External Toolsin Visual Studio.AddVisual Studio Command &Prompt(Cis already assigned to Customize)cmd.exe(should already be on your PATH)/k "\path\to\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"$(ProjectDir)OKI have these notes @ http://www.xradiograph.com/Programming/VisualStudioExpress which were in turn adapted from http://visualbasic.about.com/b/2010/08/17/the-visual-studio-command-prompt.htm and other sources