I have the following batch file
echo Setting visual studio 2010 environment variables
set VSPATH="C:\Program Files (x86)\Microsoft Visual Studio 10.0"
%VSPATH%\VC\vcvarsall.bat
echo Generating Service
the line "Generating Service" is never printed, can anyone indicate how to do this so that the batch file continues to run?
source
share