Using mklink /h results in "Access is denied."
Hard links can only be used for files, not directories.
References: MSDN: Hard Links and Junctions, <1>, and <2>
You can use the /j
switch to create a directory soft link. Be careful with the del
command. To remove link to directory use the rmdir
command, as del
will delete all files in the directory the link points to.