Mount multiple virtual drives in the same command line

rclone version 1.52.2

OS Windows 10 (64 bit)

Can anybody tell me how to mount two cloud storage drives using a single command line window.

If i use the following command:

rclone mount Test: X:

After entering this the cmd window wont let me type anything else.

i tries using a batch file:

rclone mount Test: X:
rclone mount Test2: G:

Here again only drive X is mounted not the second one.

each line of a batch is run in order.
so the second line is only executed after the first line has completed.
rclone mount runs and does not exit, it keeps running until you kill rclone.exe

try this

start rclone mount Test: X:
start rclone mount Test2: G:

Thanks it runs well..even via task scheduler.

sure, glad to help solve your problem

let me know if you have more questions.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.