Created
May 1, 2017 11:34
-
-
Save RafalSladek/61c78b1d147cea4e5e0a51ac9c2ff2df to your computer and use it in GitHub Desktop.
declare an array and kill process for every item
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
| set "exes=Dropbox chrome evernote OfficeClicktoRun googledrivesync" | |
| for %%e in (%exes%) do ( | |
| echo Killing process %%e... | |
| taskkill /im %%e.exe /f | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment