Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Software >> OS >> Windows >> mklink >> How to use mklink to create symbolic links like ln in unix

 

create a soft symbolic link for a directory

mklink /d \MyFolder \Users\User1\Documents

create a hard symbolic link for a file   

mklink /h \MyFile.file \User1\Documents\example.file


SYNTAX

mklink [[/d] | [/h] | [/j]] <Link> <Target>


PARAMETERS

Parameter   Description
/d          Creates a directory symbolic link. By default, mklink creates a file symbolic link.
/h          Creates a hard link instead of a symbolic link.
/j          Creates a Directory Junction.
<Link>      Specifies the name of the symbolic link that is being created.
<Target>    Specifies the path (relative or absolute) that the new symbolic link refers to.
/?          Displays help at the command prompt.

 

 

 

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]