From 1aacf6841a5c4bce65966e1605f5cf5007c90042 Mon Sep 17 00:00:00 2001 From: justusiv Date: Fri, 21 Jul 2017 13:54:55 -0500 Subject: [PATCH] Created Install rclone via powershell script (markdown) --- Install-rclone-via-powershell-script.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Install-rclone-via-powershell-script.md diff --git a/Install-rclone-via-powershell-script.md b/Install-rclone-via-powershell-script.md new file mode 100644 index 0000000..d93f728 --- /dev/null +++ b/Install-rclone-via-powershell-script.md @@ -0,0 +1,10 @@ +I have wrote a script to install rclone on windows using PowerShell. I have wrote this for my own use but am sharing it. The default settings need Admin rights, as it installs the latest beta into the system32 folder. If you have feature requests I have started a thread on the forums located here + +https://forum.rclone.org/t/install-script-for-rclone-on-windows/3149 + +To use the script you can simply run this line in PowerShell + + Invoke-Expression ((Invoke-WebRequest -Uri "https://gist.githubusercontent.com/justusiv/1ff2ad273cea3e33ca4acc5cab24c8e0/raw").content) + install-rclone + +As with any code please review it before running it on your system.