Date: Tue, 7 Jan 2003 16:18:24 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Andrew Cottrell cc: djgpp-workers AT delorie DOT com Subject: Re: Quirk with command.com shell on XP In-Reply-To: <005401c2b632$713a4760$0100a8c0@acp42g> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 7 Jan 2003, Andrew Cottrell wrote: > This may seem okay, but when I do this I run out of enviroment space in teh > resulting cmd.com shell. > > If I set comspec=.....\command.com then I don't run out of environment > space. It figures. I believe you will see similar problems with Windows 9X family's command.com. The solution is to run commands via "command.com /e:2000 /c foo", where `foo' is the command or batch file you want to run. > 2) Try to execute the makeall.bat using the following command:- > redir -o mkall_out.txt -eo makeall.bat Try "redir -o mkall_out.txt -eo command.com /e:2000 /c makeall.bat" instead.