Skip to content

Instantly share code, notes, and snippets.

@tsukumijima
Last active May 25, 2021 10:05
Show Gist options
  • Save tsukumijima/639c1a57c14d8909885b46e1778424b6 to your computer and use it in GitHub Desktop.
Save tsukumijima/639c1a57c14d8909885b46e1778424b6 to your computer and use it in GitHub Desktop.
AdobeCC がバックグラウンドで動いてると重いので関連プロセスを一括で taskkill するバッチ
@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