Rclone logs to stderr so to capture the log (assuming powershell works something like bash) you'd write this to send stderr to wherever stdout is going
rclone ...... 2>&1 | tee "C:\Users\user\Desktop\My Documents\log.log"
Rclone logs to stderr so to capture the log (assuming powershell works something like bash) you'd write this to send stderr to wherever stdout is going
rclone ...... 2>&1 | tee "C:\Users\user\Desktop\My Documents\log.log"