mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
Page:
Windows Installation with Chocolatey
Pages
"serve" to Another Computer
Automatic Syncing from Google Drive to Server with rclone
Big syncs with millions of files
Configure Rclone using 1password (and Ansible)
Docker images
Export configuration password to env variable and only remember it for some time
Home
How to enable VSS for rclone
Install Rclone with Ansible
Install rclone via powershell script
Launch rclone on Android with Automate
Making your own OneDrive client to avoid shared quota? When GUI is unavailable, try the Azure CLI
Mounting Oracle OCI Object Storage Buckets as Local File System
Prompt "fusermount3": executable file not found in $PATH and cannot mount!
Rclone Optimizations
Securing rclone using password and config in & out commands [Android, Windows]
Setting up a Windows development environment for rclone
Systemd rclone mount
Third Party Installers
Third Party Integrations with rclone
Using Volume Shadow Copy Service (VSS) with rclone
What to do after the repository move
Windows Installation with Chocolatey
Windows PowerShell use rclone password command for config file password
how to run .exe application on rclone mount
rclone fstab mount helper script
rclone mount helper script
rclone on Android with Termux
turn your android phone into a media server
1
Windows Installation with Chocolatey
albertony edited this page 2022-09-09 23:27:12 +02:00
Table of Contents
Using Chocolately for installation is a great choice with Windows as it's designed to for automated application installation and upgrades, without the need for custom scripting.
Chocolatey provides a similar to experience with application installation as apt-get
for Linux.
Install Chocolately Deliciousness
To install Chocolatey, follow the directions located on Chocolatey Install. From this documentation, you can run this in cmd.exe as admin.
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
Let Chocolately Do the Magic
Then simply run in command prompt or powershell
choco upgrade rclone -y
Note: Upgrade will install Rclone if does not exist, or upgrade to latest version if it does exist.