--skip-links no longer works on Windows

What is the problem you are having with rclone?

I have a script I've used for years that syncs a Windows directory to a file share.
I have used the --skip-links command to ignore the links in the directory, which has worked for some time. However, after updating to 1.69.2, those errors are no longer ignored, and the backup fails.

Run the command 'rclone version' and share the full output of the command.

rclone v1.69.2

  • os/version: Microsoft Windows 11 Enterprise 23H2 23H2 (64 bit)
  • os/kernel: 10.0.22631.5189 (x86_64)
  • os/type: windows
  • os/arch: amd64
  • go/version: go1.24.2
  • go/linking: static
  • go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

Local Windows drive to Windows file server

The command you were trying to run (eg rclone copy /tmp remote:tmp)

rclone.exe^
  sync^
  --log-level INFO^
  --stats-one-line-date^
  --skip-links^
  --checksum^
  --delete-excluded^
  --fix-case^
  --create-empty-src-dirs^
  --filter ... ^
  C:/^
  //server/share

There are many filter lines.

The rclone config contents with secrets removed.

No config file is used.

A log from the command with the -vv flag

2025/05/02 17:48:24 ERROR : Users/user/NetHood: Failed to copy: failed to open source object: Access is denied.
2025/05/02 17:48:24 ERROR : Users/user/PrintHood: Failed to copy: failed to open source object: Access is denied.
2025/05/02 17:48:24 ERROR : Users/user/Recent: Failed to copy: failed to open source object: Access is denied.
2025/05/02 17:48:24 ERROR : Users/user/SendTo: Failed to copy: failed to open source object: Access is denied.
2025/05/02 17:48:24 ERROR : Users/user/Start Menu: Failed to copy: failed to open source object: Access is denied.
2025/05/02 17:48:24 ERROR : Users/user/Templates: Failed to copy: failed to open source object: Access is denied.

What is the problem you are having with rclone?

Identical problem experienced with --links option since using v1.69.2.

Run the command 'rclone version' and share the full output of the command.

rclone v1.69.2

  • os/version: Microsoft Windows 10 Pro 22H2 22H2 (64 bit)
  • os/kernel: 10.0.19045.2006 (x86_64)
  • os/type: windows
  • os/arch: amd64
  • go/version: go1.24.2
  • go/linking: static
  • go/tags: cmount

Which cloud storage system are you using? (eg Google Drive)

Local Windows share to IDrive e2 bucket.

The command you were trying to run

rclone ^
sync ^
"\server\share" ^
--log-file "..." ^
--backup-dir "storage:/path" ^
--s3-copy-cutoff 100M ^
--create-empty-src-dirs ^
--exclude "..." ^
--ignore-case ^
--order-by name ^
--links ^
--progress -v

A log from the command

2025/05/01 23:00:00 ERROR : ...: Failed to copy: failed to open source object: The system cannot find the file specified.
...
2025/05/01 23:39:41 ERROR : S3 bucket bak path ...: not deleting files as there were IO errors
2025/05/01 23:39:41 ERROR : S3 bucket bak path ...: not deleting directories as there were IO errors
2025/05/01 23:39:41 ERROR : Attempt 1/3 failed with 1 errors and: failed to open source object: The system cannot find the file specified.
...
2025/05/01 23:49:20 ERROR : ...: Failed to copy: failed to open source object: The system cannot find the file specified.
...
2025/05/02 00:03:34 ERROR : S3 bucket bak path ...: not deleting files as there were IO errors
2025/05/02 00:03:34 ERROR : S3 bucket bak path ...: not deleting directories as there were IO errors
2025/05/02 00:03:34 ERROR : Attempt 2/3 failed with 1 errors and: failed to open source object: The system cannot find the file specified.
...
2025/05/02 00:13:22 ERROR : ...: Failed to copy: failed to open source object: The system cannot find the file specified.
...
2025/05/02 00:27:55 ERROR : S3 bucket bak path ...: not deleting files as there were IO errors
2025/05/02 00:27:55 ERROR : S3 bucket bak path ...: not deleting directories as there were IO errors
2025/05/02 00:27:55 ERROR : Attempt 3/3 failed with 1 errors and: failed to open source object: The system cannot find the file specified.

welcome to the forum,

can you post the simplest command possible to reproduce the issue, no extra flags.
perhaps rclone ls c:\Users\user\NetHood --skip-links --retries=1 is enough to trigger the error.

and post two full debug logs, not snippets.
a debug log for the latest version that works, and a debug log for the latest version that does not work.

I cannot provoke anything more meaningful unless I sync the whole directory (even then, I am not certain the log hints at why).

Is there somewhere I can post full logs privately?