|
-
Feb 20th, 2002, 04:30 PM
#1
Enviroment space question
Im using windows 98. I have VC++ installed. In the bin directory, theres a batch file called VCVARS32.BAT that sets some variables so that you can use VC++ from the command line. This is the file...
Code:
@echo off
rem
rem Root of Visual Developer Studio Common files.
set VSCommonDir=C:\PROGRA~1\MICROS~3\COMMON
rem
rem Root of Visual Developer Studio installed files.
rem
set MSDevDir=C:\PROGRA~1\MICROS~3\COMMON\msdev98
rem
rem Root of Visual C++ installed files.
rem
set MSVCDir=C:\PROGRA~1\MICROS~3\VC98
rem
rem VcOsDir is used to help create either a Windows 95 or Windows NT specific path.
rem
set VcOsDir=WIN95
if "%OS%" == "Windows_NT" set VcOsDir=WINNT
rem
echo Setting environment for using Microsoft Visual C++ tools.
rem
if "%OS%" == "Windows_NT" set PATH=%MSDevDir%\BIN;%MSVCDir%\BIN;%VSCommonDir%\TOOLS\%VcOsDir%;%VSCommonDir%\TOOLS;%PATH%
if "%OS%" == "" set PATH="%MSDevDir%\BIN";"%MSVCDir%\BIN";"%VSCommonDir%\TOOLS\%VcOsDir%";"%VSCommonDir%\TOOLS";"%windir%\SYSTEM";"%PATH%"
set INCLUDE=%MSVCDir%\ATL\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\MFC\INCLUDE;%INCLUDE%
set LIB=%MSVCDir%\LIB;%MSVCDir%\MFC\LIB;%LIB%
set VcOsDir=
set VSCommonDir=
And this is what i get when i run it...
Code:
Out of environment space
Out of environment space
Setting environment for using Microsoft Visual C++ tools.
Out of environment space
Out of environment space
Out of environment space
Is there a way i can increase the enviroment space?
-
Feb 21st, 2002, 10:36 AM
#2
for dos you'd use the shell command. Don't know for WinNT though.
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Feb 21st, 2002, 12:54 PM
#3
-
Feb 21st, 2002, 02:43 PM
#4
Monday Morning Lunatic
Change your MS-DOS Prompt shortcut on the Start Menu, and under Memory give it 8192 for environment
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
-
Feb 21st, 2002, 04:04 PM
#5
Actually i went into config.sys and put
Code:
SHELL=C:\COMMAND.COM /E:1024 /P
-
Feb 24th, 2002, 04:33 PM
#6
Monday Morning Lunatic
That mostly worked when I did that before, but it occasionally did random things so I had to stop using it
I refuse to tie my hands behind my back and hear somebody say "Bend Over, Boy, Because You Have It Coming To You".
-- Linus Torvalds
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|