VC 6.0 msdev.exe System Path
-
Hello, How can I guarantee that msdev.exe is in my system path? I tried using "set path=%path%;C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;" in the autoexec.bat file but I get the "Too many parameters" error (because of the spaces, I guess). How can I set the path? Who can I ask (If you don't know)? Thank You. BTW, I'm using Windows 98 SE. ----------------------- But what did I do?
-
Hello, How can I guarantee that msdev.exe is in my system path? I tried using "set path=%path%;C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;" in the autoexec.bat file but I get the "Too many parameters" error (because of the spaces, I guess). How can I set the path? Who can I ask (If you don't know)? Thank You. BTW, I'm using Windows 98 SE. ----------------------- But what did I do?
-
Try putting VCVARS32.BAT at the end of your autoexec.bat VCVARS32.BAT is found under the "Microsoft Visual Studio\VC98\Bin" directory. HTH Jignesh
Hello Jignesh Sorry for being so ignorant :(( but I didn't quite understand what you meant by: "Try putting VCVARS32.BAT at the end of your autoexec.bat". Should I just add the string "VCVARS32.BAT" at the end of the autoexec.bat file? Thanks for your quick response. Alon. ----------------------- But what did I do?
-
Hello, How can I guarantee that msdev.exe is in my system path? I tried using "set path=%path%;C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin;" in the autoexec.bat file but I get the "Too many parameters" error (because of the spaces, I guess). How can I set the path? Who can I ask (If you don't know)? Thank You. BTW, I'm using Windows 98 SE. ----------------------- But what did I do?
For file paths with spaces you gotta add quotes. Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
-
Hello Jignesh Sorry for being so ignorant :(( but I didn't quite understand what you meant by: "Try putting VCVARS32.BAT at the end of your autoexec.bat". Should I just add the string "VCVARS32.BAT" at the end of the autoexec.bat file? Thanks for your quick response. Alon. ----------------------- But what did I do?
Open Autoexec.bat using an editor, and add C:\....\vcvars32.bat as your last line. Then this will get executed at boot time. Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
-
Open Autoexec.bat using an editor, and add C:\....\vcvars32.bat as your last line. Then this will get executed at boot time. Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]
Nishant S wrote: add C:\....\vcvars32.bat as your last line. Don't forget the
call
keyword before a batch file, or else the new batch file never returns to the caller.call C:\msdev\vc98\bin\vcvars32.bat
--Mike-- The Internet is a place where absolutely nothing happens. -- Strong Bad 1ClickPicGrabber - Grab & organize pictures from your favorite web pages, with 1 click! My really out-of-date homepage Sonork-100.19012 Acid_Helm
-
For file paths with spaces you gotta add quotes. Nish
Author of the romantic comedy Summer Love and Some more Cricket [New Win] Review by Shog9 Click here for review[NW]