In MS-DOS, the SUBST command was added with the release of MS-DOS 3.1.3 The command is similar to floating drives, a more general concept in operating systems of Digital Research origin, including CP/M-86 2.x, Personal CP/M-86 2.x, Concurrent DOS, Multiuser DOS, System Manager 7, REAL/32, as well as DOS Plus and DR DOS (up to 6.0). DR DOS 6.0 includes an implementation of the SUBST command.4 The command is also available in FreeDOS5 and PTS-DOS.6 The Windows SUBST command is available in supported versions of the command line interpreter cmd.exe.7 In Windows NT, SUBST uses DefineDosDevice() to create the disk mappings.
The JOIN command is the "opposite" of SUBST, because JOIN will take a drive letter and make it appear as a directory.
Some versions of MS-DOS COMMAND.COM support the undocumented internal TRUENAME command which can display the "true name" of a file, i.e. the fully qualified name with drive, path, and extension, which is found possibly by name only via the PATH environment variable, or through SUBST, JOIN and ASSIGN filesystem mappings.
This is the command syntax in Windows XP to associate a path with a drive letter:
This means that, for example, to map C:'s root to X:, the following command would be used at the command-line interface:
Upon doing this, a new drive called X: would appear under the My Computer virtual folder in Windows Explorer.
To unmap drive X: again, the following command needs to by typed at the command prompt:
A custom label can be assigned to a drive letter created in this way by way of a registry key, which can be created by renaming (select "rename" from the drive letter context menu or press F2) the SUBST drive in Windows Explorer/My Computer.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\DriveIcons\M\DefaultLabel\
(DefaultValue) = Your Drive Label
"M" represents the drive letter to assign a custom label to.
However, labels created for SUBST drives in this manner are overridden by the label of the host drive/partition: the custom labels are only used if the host drive has no label. One may then:
Note that the LABEL command is NOT able to change the label name of a drive letter created using subst.8 LABEL is one of several commands that only work on physical drives.9
Drive letters mapped with the command are not available during system startup for services nor do they persist across a reboot.
The DOS Devices mechanism that underlies subst can be set in registry. This way, the mapped drives are usable immediately during startup.
Create a new registry entry "String Value" in the following key:
The name should be "X:" where X is the drive letter.
The value should be the path in one of the following NT Object Manager forms:
There are tools available to make the necessary changes for the user, including psubst.
The relative to this thematic registry key is HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices. It defines mapping of drive letters into particular hard disk partitions, similar to /etc/fstab on a Unix system. It also can be edited manually, but only at that time while that particular installed Window operation system is "inactive". So that, for example, if you currently boot from "D:\Windows" then you can edit the HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices key of Windows that is installed in a "C:\Windows" folder, for an instance by doing the following actions:
The easiest way to do this is to create a registry file (.reg), and double click the file to import the settings into the registry.
Here is an example registry file.
After configuring the registry the computer must be rebooted for the changes to take effect.
Create a batch file to run the built-in SUBST command to create a virtual drive letter for the existing mount points and place it in the user accounts startup folder.
This is not preferred, as the mapping only appears at the end of user logon.
Here is an example:
The user must log off and back on or the service must be restarted for the changes to take effect.
Edit the registry to run the built-in subst command during computer startup or user logon by leveraging the appropriate Run registry key. The easiest way to do this is to create a registry file (.reg), and double click the file to import the settings into the registry.
This is not preferred, as the mapping only appears at the end of bootup.
Example to run during computer boot
The computer must be rebooted for the changes to take effect.
Example of user logon
The user must log off and back on for the changes to take effect.
"JaTomes Help - OS/2 Commands". www.jatomes.com. Archived from the original on 2019-04-14. https://web.archive.org/web/20190414130029/http://www.jatomes.com/Help/Os2Cmd.php ↩
"Reactos/Reactos". GitHub. 22 November 2021. https://github.com/reactos/reactos/blob/master/base/system/subst/subst.c ↩
Wolverton, Van (2003). Running MS-DOS Version 6.22 (20th Anniversary Edition), 6th Revised edition. Microsoft Press. ISBN 0-7356-1812-7. 0-7356-1812-7 ↩
DR DOS 6.0 User Guide Optimisation and Configuration Tips https://www.4corn.co.uk/archive/docs/DR%20DOS%206.0%20User%20Guide-opt.pdf ↩
"FreeDOS 1.2 Updates Group - FreeDOS Base". Ibiblio.org. Retrieved 2022-09-04. http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/1.2/repos/pkg-html/group-base.html ↩
"PTS-DOS 2000 Pro User Manual" (PDF). Buggingen, Germany: Paragon Technology GmbH. 1999. Archived (PDF) from the original on 2018-05-12. Retrieved 2018-05-12. http://download.paragon-software.com/doc/manual_dos_eng.pdf ↩
"Subst". learn.microsoft.com. 11 September 2009. https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-xp/bb491006(v=technet.10) ↩
"Change network drive label by command line". https://superuser.com/a/198509/557294 ↩
"Subst". 3 February 2023. https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/subst ↩
"Microsoft.com". Microsoft. http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/subst.mspx ↩
"Windows - How to make SUBST mapping persistent across reboots?". https://superuser.com/a/1475575/502161 ↩