Created
November 26, 2013 05:17
-
-
Save stansidel/7653807 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem Every second, check to see if volume is mounted | |
echo Waiting for volume… | |
:keepwaiting | |
ping -n 1 -w 1000 127.0.0.1 > nul | |
if not exist S:\ goto keepwaiting | |
start "Dropbox" "C:\Users\UserName\AppData\Roaming\Dropbox\bin\Dropbox.exe" | |
start "Google Drive" "" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment