Note for those upgrading rclone using PowerShell

Just a note for those who update rclone with a PowerShell script.

The new https site will not work by default because PowerShell defaults to an older version of TLS resulting in this error:

Invoke-WebRequest : The request was aborted: Could not create SSL/TLS secure channel.

So you should add this line to your script:

[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12