6

I have a samba share mounted as a network drive. However, I can't make any sort of symbolic link or junction point to it. Is this possible?

When I try the following command:

mklink /D X:\Samba\dir C:\path_to_dir

I get "The file or directory is not a reparse point."

mklink /J X:\Samba\dir C:\path_to_dir

I get "Local NTFS volumes are required to complete this operation."

Any thoughts?

1
  • 1
    Is there possibly one drive that is FAT32 ?
    – user986363
    Commented Mar 2, 2017 at 9:44

1 Answer 1

7

It works like this

mklink /d "C:\path_to_dir" "X:\Samba\dir"
1
  • I used mklink /d path_to_dir X:\Samba\dir but it doesn't work, but providing the absolute path mklink /d C:\path_to_dir X:\Samba\dir does work
    – phuclv
    Commented May 5, 2017 at 2:44

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .