Skip to content

Instantly share code, notes, and snippets.

@TalalMash
Created March 19, 2023 22:24
Show Gist options
  • Save TalalMash/3ccc51e57198f9361cda5302cbc84acb to your computer and use it in GitHub Desktop.
Save TalalMash/3ccc51e57198f9361cda5302cbc84acb to your computer and use it in GitHub Desktop.
[Windows] Rclone GUI Service in background
Set oShell = CreateObject ("Wscript.Shell")
Dim cmdStrs : cmdStrs = Array( _
"D:\Downloads\rclone-v1.62.2-windows-amd64\rclone-v1.62.2-windows-amd64\rclone.exe rcd --rc-web-gui" _
)
For Each cmdStr In cmdStrs
oShell.Run cmdStr, 0, false
Next
@TalalMash
Copy link
Author

TalalMash commented Mar 19, 2023

Note for VFS users on Windows with encrypted folder or cloud, use the following parameters:
--network-mode --vfs-cache-mode=full --vfs-cache-max-age=1h

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment