Posted On August 18, 2019

Windows File System Symlink Settings

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Windows File System Symlink Settings

Issue: Shortcuts or symbolic links are inaccessible at the destination, after being synchronized (using robocopy, xcopy, emcopy, etc.)

---------------------------
Open Folder
---------------------------
\\FILESHERVER01\Users\tester\Music is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access permissions.

The symbolic link cannot be followed because its type is disabled.
---------------------------
OK
---------------------------

Check local file system settings on Symlink behavior:

PS C:\Users\admindude> fsutil behavior query SymlinkEvaluation
Local to local symbolic links are enabled
Local to remote symbolic links are enabled.
Remote to local symbolic links are disabled.
Remote to Remote symbolic links are disabled.

Enable Remote to remote symlink following option

fsutil behavior set SymlinkEvaluation R2R:1

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Setup Dynamic DNS with Google Domains & Ubiquity EdgeRouter

Step 1: Set up Dynamic DNS - Access Google Domains: - Click on the Manage…

PowerShell: Set Windows Scheduled Task to Send a Pop-up Message

# Set variables $taskName='Bi-weekly Meeting Reminder' $time='11:50am' $daily=New-ScheduledTaskTrigger -Daily -At $time $everyOtherDay=New-ScheduledTaskTrigger -Daily -DaysInterval 2…

Create New Custom Attribute to User Class

Log onto Domain Controller Schema Master with an account belong to the group Schema Admin…