HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

subst — Associates a path with a virtual drive letter. More information: <https://learn.microsoft.com/window

Submitted by: @import:tldr-pages··
0
Viewed 0 times
virtualcommandassociatespathdriveclisubstwith
windows

Problem

How to use the subst command: Associates a path with a virtual drive letter. More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/subst>.

Solution

subst — Associates a path with a virtual drive letter. More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/subst>.

List active associations:
subst


Add an association:
subst {{Z:}} {{C:\Python2.7}}


Remove an association:
subst {{Z:}} /d

Code Snippets

List active associations

subst

Add an association

subst {{Z:}} {{C:\Python2.7}}

Remove an association

subst {{Z:}} /d

Context

tldr-pages: windows/subst

Revisions (0)

No revisions yet.