Last active
May 25, 2021 10:05
-
-
Save tsukumijima/639c1a57c14d8909885b46e1778424b6 to your computer and use it in GitHub Desktop.
AdobeCC がバックグラウンドで動いてると重いので関連プロセスを一括で taskkill するバッチ
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 | |
taskkill /F /IM "Creative Cloud.exe" | |
taskkill /F /IM "Creative Cloud Helper.exe" | |
taskkill /F /IM "CCXProcess.exe" | |
taskkill /F /IM "Adobe Desktop Service.exe" | |
taskkill /F /IM "CoreSync.exe" | |
taskkill /F /IM "Adobe CEF Helper.exe" | |
taskkill /F /IM "AdobeIPCBroker.exe" | |
taskkill /F /IM "AdobeNotificationClient.exe" | |
taskkill /F /IM "AdobeNotificationHelper.exe" | |
taskkill /F /IM "AdobeUpdateService.exe" | |
taskkill /F /IM "AGSService.exe" | |
taskkill /F /IM "AGMService.exe" | |
taskkill /F /IM "CCLibrary.exe" | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment