I have a question about windows + mount

hello guys, i skipped questions because i dont have any problem mounting my service thanks Allah.
my question is, i generally mount drives and its take some times. i try mount it with single .bat file can someone help me about that?

for example

START cmd
cd C:\Users\vboxuser\Desktop\rclone-v1.62.2-windows-amd64
rclone mount 1google: A:
TIMEOUT 1S
start cmd
cd C:\Users\vboxuser\Desktop\rclone-v1.62.2-windows-amd64
rclone mount 2google: B:

this command mount a drive after that its open second cmd then stop. Any idea?
greetings!

not sure what you are asking help with?

might try

cd /d C:\Users\vboxuser\Desktop\rclone-v1.62.2-windows-amd64
start rclone mount 1google: A: --no-console
start rclone mount 2google: B: --no-console
1 Like

hello there,
thank you for answer.
with that command, pc mount first drive successly, then open second cmd page then stop, its not going to folder (C:\Users\vboxuser\Desktop\rclone-v1.62.2-windows-amd64) and not paste rclone command
I'm trying to mount multiple drives with just one click.

this script worked for me

cd /d C:\data\rclone
start rclone mount remotea: b:\rclone\mount\a --no-console
start rclone mount remoteb  b:\rclone\mount\b --no-console

cannot see into your computer, please post your current script.

i pasted exacly with your command. nothing happend :frowning:
did not open cmd or did not mount anything.
ohhhh 2 b drive there let me check again

thank you so much brother its work like that.
cd /d C:\Users\vboxuser\Desktop\rclone-v1.62.2-windows-amd64
start rclone mount 1google: A:
start rclone mount 2google: B:

i deleted no console because i have no idea how can i unmount it with that way :slight_smile:

to kill all running instances of rclone.exe
taskkill /F /IM rclone.exe

using this modified script,

cd /d C:\Users\vboxuser\Desktop\rclone-v1.62.2-windows-amd64
start "1google" rclone mount 1google: A: --no-console
start "2google" rclone mount 2google: B: --no-console

to kill just those two running instances of rclone.exe

taskkill /F /FI "WINDOWTITLE eq 1google"
taskkill /F /FI "WINDOWTITLE eq 2google"
1 Like

thank you so much for effort brother.

1 Like

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