I got an error message like "out of environment space".
Could anybody give me some advise?
Thanks a lot!
Tom Chia
From DOS? Look at the SHELL= line in your CONFIG.SYS. Mine is:
SHELL=c:\dos\command.com c:\dos /p /e:1200
What you're looking for is the last parameter, which specifies the
size of the environment.
--
#include <standard.disclaimer>
_
Kevin D Quitt USA 91351-4454 96.37% of all statistics are made up
Also, if you simply put all your set statements in your autoexec.bat file
BEFORE any executable statements, DOS will automatically enlarge the
environment as needed.
--John
I believe that's not true for all versions of DOS. Certainly the newer ones.
I just ran into this the other day. I fixed it by running memmaker,
but this utility only exists on recent versions of MSDOS ( i think >=
6.00). Not real sure why this worked, but it did. I later learned
that you can specify your environment space in config.sys with the
line:
SHELL=C:\DOS\COMMAND.COM /E:nnnn
where nnnn is the amount of memory you want for the the environment in
bytes. see the help page for command for more info.