Date: Sat, 05 May 2001 18:14:07 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: wcount12 AT aol DOT com (WCount12) Message-Id: <2593-Sat05May2001181406+0300-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <20010505082518.29247.00002483@ng-bh1.aol.com> (wcount12@aol.com) Subject: Re: Installation Problem? References: <20010505082518 DOT 29247 DOT 00002483 AT ng-bh1 DOT aol DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: wcount12 AT aol DOT com (WCount12) > Newsgroups: comp.os.msdos.djgpp > Date: 05 May 2001 12:25:18 GMT > > Hi, im running Windows Millennium and when I edit the my Path in the system > configuration facility I get the following message. > > "No enviroment value substitutions are allowed ( no more than one '%') Windows ME ignores AUTOEXEC.BAT and CONFIG.SYS almost entirely, so setting enviroment variables through AUTOEXEC.BAT only half works, and doing anything else beyond setting enviroment variables doesn't work at all. Instead of pulling your hair trying to outsmart Windows ME, I suggest to set up your DOS box so that it is suitable for DJGPP. To this end, open the DOS box (it's under Start->Programs->Accessories), then click on the Properties button on the DOS box toolbar, and in the "Cmd line" property type this: c:\windows\command.com /e:2000 /k c:\djgpp\bin\djgpp.bat (This assumes that you installed DJGPP in c:\djgpp; if not, change this accordingly.) Next, create a c:\djgpp\bin\djgpp.bat file with any text editor, and put these 3 lines into it: @echo off set PATH=C:\DJGPP\BIN;%PATH% set DJGPP=c:\djgpp\djgpp.env Save this batch file, exit the editor, close the DOS box, then open it again, and you should be able to use DJGPP in that DOS box ever since.