How can I use the tools included in the VS command prompt (Programs | MS Visual Studio 2008 | Visual Studio Tools | Visual Studio 2008 Command Prompt) from any command prompt (ie without calling vcvarsall.bat) or program?
|
|
|
||
|
|
|
|
The easiest way to do this is to add the PATH, INCLUDE, LIB and LIBPATH environment variables that are listed in the vsvarsXX.bat file for VS2005 on a 32 bit Intel box. Here's the sample for vsvars32.bat:
Pick and fill in the values from there. |
||||
|
|
|
You might be interested in adding a "Visual Studio Command Prompt Here" context menu option in Windows Explorer. Scott Hanselman has a link to an .inf file you can run to make the registry changes for this |
||
|
|
|
|
To get it to work from a program, the easiest route is probably to set all the environment variables permanently for the user. To use it from a command prompt... I just use the Command Prompt Tools shortcut as my normal command prompt shortcut, so I've always got them anyway. The good thing about this approach is that you can have different shortcuts for different versions - so I have a VS2008 shortcut and a VS2010 shortcut. |
||
|
|
|
|
Perhaps add to your path var the locations of bin folders for the tools provided by visual studio |
||
|
|
