How to remove the adobe Acrobat Update service (AdobeARM.exe)

Description

AdobeARM.exe is not essential for Windows and will often cause problems. AdobeARM.exe is located in a subfolder of “C:\Program Files\Common Files”—for instance C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\.

Recommanded to delete this services for packaging

Stop Services

Delete Services

Delete File

Powershell Script for deleting

$Destination = “C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\”

Get-Service -DisplayName “Acrobat Reader DC2” | Stop-Service

sc.exe delete “AdobeARMservice”

Get-ChildItem -Path $Destination -Recurse | Remove-Item -force -recurse

Remove-Item $Destination -Force