Standalone rclone (CLI) writes zero registry keys. It is a single portable .exe.
All remote configurations (Google Drive, S3, Dropbox, etc.) are stored in %USERPROFILE%\.config\rclone\rclone.conf — this file contains credentials.
rclone-browser is a popular Windows GUI that registers minimal user-level keys.
To mount remotes as Windows drives, rclone uses WinFsp as a dependency — see its own registry entries.
# Check rclone version (standalone)&rcloneversion2>$null|Select-Object-First1# List configured remotes from the config file$conf="$env:USERPROFILE\.config\rclone\rclone.conf"if(Test-Path$conf){Select-String"^\["$conf|ForEach-Object{$_.Line}}
🗑️ Cleanup
# Remove rclone-browser settings (CLI leaves no registry keys)Remove-Item-Path"HKCU:\SOFTWARE\rclone-browser"-Recurse-ErrorActionSilentlyContinue