Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save squaresmile/297060953f8d16f99e4bb5162fde05fa to your computer and use it in GitHub Desktop.
Save squaresmile/297060953f8d16f99e4bb5162fde05fa to your computer and use it in GitHub Desktop.
update_rclone.ps1
Invoke-WebRequest "https://downloads.rclone.org/rclone-current-windows-amd64.zip" -OutFile rclone.zip
Expand-Archive rclone.zip -DestinationPath .\
Move-Item -Force .\rclone-v*\* .\
Remove-Item -Recurse .\rclone-v*
Remove-Item rclone.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment