From: Damian Yerrick Newsgroups: comp.os.msdos.djgpp Subject: Re: Setting windows Environment Organization: Pin Eight Software http://pineight.8m.com/ Message-ID: References: X-Newsreader: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 24 X-Trace: /K0ZEB8izr+U+yMk67akFRRLBBt5KR/vJ4QZA3mW6DR15BrazY70G7s9+l+RbYtY8frajONiGaPE!0I2YoMVkN5jUYohbn2vLOFTstMyZAxVcEoDWCcN5aI6uPG7z727tTwxfmEHcup7ZykaKUrab+R9l!tqOVug== X-Complaints-To: abuse AT gte DOT net X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly NNTP-Posting-Date: Tue, 07 Nov 2000 14:49:12 GMT Distribution: world Date: Tue, 07 Nov 2000 14:49:12 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com On Tue, 07 Nov 2000 02:45:00 GMT, "ALiEnDuDE" wrote: >Hello. I use to have a program so that you didnt need to set the environment >in autoexec.bat and it would do it for you before you ran DJGPP. Does anyone >know where I can download this program? Thanks :) It's a batch file. You'll have to change it to account for where you installed DJGPP. ===== begin djgpp.bat ===== @echo off set PATH=c:\djgpp\bin;%PATH% set DJGPP=c:\djgpp\djgpp.env echo DJGPP environment variables set ===== end djgpp.bat ===== --