Мне нужно хранить символические ссылки в сетевой папке. Пробуем это:
mklink \ edgeserver \ public \ test.pdf \ fileserver1 \ files \ test.pdf
и появляется сообщение об ошибке:
Устройство не поддерживает символические ссылки
Командная строка работает в Windows Server 2008 R2, но я не уверен, какая базовая технология используется для общих сетевых ресурсов.
Есть ли способ хранить символические ссылки в общей сетевой папке?
РЕДАКТИРОВАТЬ
Я только что заметил, что это похоже на то, что вы пытаетесь создать символическую ссылку между два сетевые ресурсы. Меня совсем не удивляет, что это не работает должным образом. Зачем вам это нужно? У меня такая же ошибка, когда я только что тестировал, используя Windows 10 и два сервера Linux Samba. Я уверен, что эта функция просто не поддерживается, но если она есть, возможно, она поддерживается только серверами Windows. Я не могу это легко проверить.
Какая ОС работают на ваших серверах хранения?
Оригинальный ответ
Согласно этому сайту, вам может потребоваться внести некоторые изменения в конфигурацию, чтобы это работало. У сайта лучшее форматирование, но я процитировал ниже на случай, если сайт исчезнет.
http://sourcedaddy.com/windows-7/how-to-create-symbolic-links-to-shared-folders.html
The mklink command also allows you to create a symbolic link targeting a Universal Naming Convention (UNC) path. For example, if you run the following command, Windows will create a symbolic link file called Link.txt that opens the Target.txt file. Mklink link.txt \\server\folder\target.txt If you enable remote symbolic links (discussed later in this section), they can be used to store symbolic links on shared folders and automatically redirect multiple Windows network clients to a different file on the network. By default, you can use symbolic links only on local volumes. If you attempt to access a symbolic link located on a shared folder (regardless of the location of the target) or copy a symbolic link to a shared folder, you will receive an error. You can change this behavior by configuring the following Group Policy setting: Computer Configuration\Administrative Templates\System\NTFS File System\Selectively Allow The Evaluation Of A SymbolicLink When you enable this policy setting, you can select from four settings: Local Link To Local Target Enabled by default, this allows local symbolic links to targets on the local file system. Local Link To Remote Target Enabled by default, this allows local symbolic links to targets on shared folders. Remote Link To Remote Target Disabled by default, this allows remote symbolic links to remote targets on shared folders. Remote Link To Local Target Disabled by default, this allows remote symbolic links to remote targets on shared folders. Enabling remote links can introduce security vulnerabilities. For example, a malicious user can create a symbolic link on a shared folder that references an absolute path on the local computer. When a user attempts to access the symbolic link, he will actually be accessing a different file that might contain confidential information. In this way, a sophisticated attacker might be able to trick a user into compromising the confidentiality of a file on his local computer.
Также я заметил, что в вашем UNC-пути отсутствует обратная косая черта, она должна быть \\fileserver1\files\test.pdf