Return to Snippet

Revision: 9430
at November 5, 2008 22:58 by hoffstein


Initial Code
mklink /D c:\vim "C:\Program Files (x86)\Vim"

Initial URL
http://en.wikipedia.org/wiki/NTFS_symbolic_link

Initial Description
The mklink command is used to create a symbolic link. It has the following command line syntax:

    mklink [[/D] | [/H] | [/J]] link target

* /D – Creates a directory symbolic link. Default is a file symbolic link.
* /H – Creates a hard link instead of a symbolic link.
* /J – Creates a Directory Junction.
* link – Specifies the new symbolic link name.
* target – Specifies the path (relative or absolute) that the new link refers to.

Initial Title
Create symbolic link in Vista

Initial Tags


Initial Language
DOS Batch