Create virtual drives via SUBST.EXE tool

The DOS-based SUBST.EXE is an underused but handy tool. SUBST.EXE allows you to to create "virtual" drives by associating a path with a drive letter.

Creating a new drive letter can be very useful when working with deep folder hierarchies as well as when working with projects copied from another system, for example, where some drives/paths may be (for whatever reason) hard-coded.

The following simple script (which can be added to the startup folder and/or left as a shortcut on the desktop), allows a virtual drive to be toggled on and off. When using a shortcut on the desktop, to avoid the customary flash of the DOS window opening, select the shortcut properties and change the "Run:" option to "Minimized."

 Code: @ECHO OFF IF EXIST P: ( SUBST /D P: ) ELSE ( SUBST P: "C:AVeryLongPathToYourWorkingFiles" )

 

    Requires Free Membership to View

This was first published in January 2006

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.