Skip to content

Instantly share code, notes, and snippets.

@RoadToDream
Last active October 28, 2022 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RoadToDream/f4790bb5fbf9d047869c4746c6ff0fbb to your computer and use it in GitHub Desktop.
Save RoadToDream/f4790bb5fbf9d047869c4746c6ff0fbb to your computer and use it in GitHub Desktop.
Disable all Adobe services.
function TerminateProcess {
param (
$ProcessName
)
$p = Get-Process $ProcessName -ErrorAction SilentlyContinue
if ($p) {
Stop-Process -InputObject $p
}
}
function StopService {
param (
$ServiceName
)
$s = Get-Service $ServiceName -ErrorAction SilentlyContinue
if ($s) {
Stop-Service -InputObject $s
}
}
TerminateProcess -ProcessName "Creative Cloud"
TerminateProcess -ProcessName "CCXProcess"
TerminateProcess -ProcessName "CCLibrary"
TerminateProcess -ProcessName "CoreSync"
TerminateProcess -ProcessName "AdobeIPCBroker"
TerminateProcess -ProcessName "Adobe Desktop Service"
TerminateProcess -ProcessName "Creative Cloud Helper"
TerminateProcess -ProcessName "Creative Cloud"
TerminateProcess -ProcessName "AdobeNotificationClient"
TerminateProcess -ProcessName "AdobeNotificationHelper"
TerminateProcess -ProcessName "AcrobatNotificationClient"
TerminateProcess -ProcessName "AdobeCollabSync"
TerminateProcess -ProcessName "armsvc"
TerminateProcess -ProcessName "acrotray"
StopService -ServiceName "AdobeARMservice"
StopService -ServiceName "AdobeUpdateService"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment