Xref: utzoo comp.os.msdos.misc:1197 comp.os.msdos.programmer:3433 comp.os.msdos.apps:1086 Path: utzoo!mnetor!tmsoft!torsqnt!news-server.csri.toronto.edu!bonnie.concordia.ca!clyde.concordia.ca!nstn.ns.ca!news.cs.indiana.edu!att!linac!pacific.mps.ohio-state.edu!zaphod.mps.ohio-state.edu!wuarchive!cs.utexas.edu!helios!rigel.tamu.edu!jmr5125 From: jmr5125@rigel.tamu.edu (Mason Reed) Newsgroups: comp.os.msdos.misc,comp.os.msdos.programmer,comp.os.msdos.apps Subject: Re: PATH statement Message-ID: <12174@helios.TAMU.EDU> Date: 14 Feb 91 23:10:40 GMT References: <26780@uflorida.cis.ufl.EDU> <1991Feb11.201752.17466@qualcomm.com> <1991Feb14.123101.683@IDA.ORG> Sender: usenet@helios.TAMU.EDU Reply-To: jmr5125@rigel.tamu.edu Followup-To: comp.os.msdos.misc Organization: Academic Computing Services, Texas A&M University Lines: 17 News-Software: VAX/VMS VNEWS 1.3-4 In article <1991Feb14.123101.683@IDA.ORG>, rlw@IDA.ORG (Richard Wexelblat) writes... > >A good way to handle long paths and infrequently used directories that >will work both in windows and outside is to set up a series of bat >files in your local equivalent of /bat or /usr for these infrequently >used directories. The way I handle it is to simply use subst to simplify the paths. For instance: subst z: c:\dos\path\utilities subst x: c:\dos\path\mice and so forth. Then in you set your path as follows: set path=z:\;x:\;... All this requires is that you have DOS 3.3(?) or better, and you insert the line "lastdrive=z" into your config.sys (so that you can define drive letters above C: or D: or whatever). Hope this helps.