48

My home directory is c:\Users\phi as a user phi, and I made a directory at c:\Users\abc. I need to symbolic link from c:\Users\phi\hello to c:\Users\abc\hello.

I run the following command

mklink c:\Users\abc\hello c:\Users\phi\hello

But I get the Access is denied error. User phi is Administrator, so I have no problem writing files in c:\Users\abc.

Why is this? How to mklink?

prosseek
  • 6,054

10 Answers10

44

Important points:

  1. You need to run as admin if UAC is on. (or at least security policy to allow creation of links).
  2. The /D switch needs to be used if the link is for directory.
  3. First parameter is a link, second parameter is the original folder.
  4. Link should not exist already.

Usage:

mklink /D c:\users\me\new_link\ c:\users\me\original_folder\
kenorb
  • 26,615
rpattabi
  • 731
27

I found an answer from this site. In short, I should have run cmd.exe as Administrator.

prosseek
  • 6,054
21

Note that the same error will be presented when you try to create junctions on mapped drives. I was pulling my hair out on this until I came across the examples on this page on MSDN Hard Links and Junctions.

Short answer: you can only use mklink on local volumes.

rburte
  • 1,331
20

In Windows 7 (and later) you need a special security privilege to create links and junctions. As administrator you can grant this permission to users using secpol.msc to set Local Policies\User Rights Assignment\Create symbolic links.

If the user is logged on at the time, they will need to log off and back on to be able to create links.

Note the caution that links can expose security weaknesses in some apps - I have not researched what those weaknesses might be.

12

If you're frequently using Linux, remember that the parameters are swapped on Windows.

If you use the wrong order, you'll get an "Access Denied", too. Because you're trying to create a symbolic link where the original already exists.

Windows: mklink /D link original

Linux: ln -s original link

Sascha
  • 1,114
4

I was getting this because I accidentally ran mklink /D against a file. The link wasn't showing in explorer but it did in Windows Explorer. Using the Command Prompt I deleted the original invalid directory link and then recreated it without the /D option.

By the way, I was getting the "Access is denied" error even though I was running cmd.exe as an administrator.

Gareth
  • 19,080
2

If you run:

mklink /j C:\path_to_link C:\destination

it should work. In my case, powershell and cmd produced the same output. For powershell you only have to start the command with

cmd /c mklink...

modmoto
  • 167
1

Apart from running mklink as Administrator you also should make sure that you have enough permissions to the destination folder you are linking to.

0

This might sound weird but make sure that the file or folder you are trying to create doesn't already exist. Sometimes, it's easy to overlook that in the cmd prompt.

0

For directories you have to do:

mklink /D c:\Users\abc\hello c:\Users\phi\hello
Zequez
  • 1,652