Run the command 'rclone version' and share the full output of the command.
Problematic Version:
rclone v1.71.2
- os/version: Microsoft Windows 11 Pro 25H2 25H2 (64 bit)
- os/kernel: 10.0.26200.7171 (x86_64)
- os/type: windows
- os/arch: amd64
- go/version: go1.25.3
- go/linking: static
- go/tags: cmount
Which cloud storage system are you using? (eg Google Drive)
OneDrive.
The command you were trying to run (eg rclone about /tmp remote:tmp)
rclone about OneDrive_CloudStorage:
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
[OneDrive_CloudStorage]
type = onedrive
client_id = XXX
client_secret = XXX
token = XXX
drive_id = XXX
drive_type = personal
[OneDrive_Personal]
type = onedrive
client_id = XXX
client_secret = XXX
token = XXX
drive_id = XXX
drive_type = personal
[OneDrive_Personal_Vault]
type = crypt
remote = OneDrive_Personal:rc_crypt
password = XXX
password2 = XXX
### Double check the config for sensitive info before posting publicly
A log from the command that you were trying to run with the -vv flag
2025/11/12 10:13:10 CRITICAL: Failed to create file system for "OneDrive_CloudStorage:": failed to get root: Get "https://graph.microsoft.com/v1.0/drives/UID/root": tls: failed to verify certificate: x509: negative serial number
My Issue:
In my environment, I have a proxy system intercepting all HTTPS traffic. Obviously this interferes with the certificates of HTTPS servers. Thus, the Windows Trusted Root CA store has the cert from the proxy installed. This is a commercial proxy system and this works great for browsers, most applications, etc.
Previously, this has worked fine with Rclone too. Then, I tried updating to the latest version (1.71.2), and received the above error. I tried specifying the --ca-file as per Additional HTTPS remote flags · Issue #2966 · rclone/rclone · GitHub , but Rclone refused to load the CA cert from the file, with an error.
Reverting back to the 1.69.1 binary fixes everything. This is the version which WORKS fine, I have not tried others (apart from latest):
rclone v1.69.1
- os/version: Microsoft Windows 11 Pro 25H2 25H2 (64 bit)
- os/kernel: 10.0.26200.7171 (x86_64)
- os/type: windows
- os/arch: amd64
- go/version: go1.24.0
- go/linking: static
- go/tags: cmount
Question: What has changed between 1.69.1 and 1.71.2 which is preventing this working? More importantly, how can I solve this issue on the later Rclone versions?