Last active
February 1, 2017 17:42
-
-
Save honktang/3774238 to your computer and use it in GitHub Desktop.
Restart Dropbox
This file contains 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 | |
set app="%AppData%\Dropbox\bin\Dropbox.exe" | |
taskkill -F -IM "Dropbox.exe" | |
start "Restart Dropbox" %app% -B; |
This file contains 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
killall Dropbox | |
/Applications/Dropbox.app/Contents/MacOS/Dropbox &> /dev/null & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment