Adobe Acrobat DC PRO (64-bit) and Adobe Acrobat Reader DC Continuous are pushed from patch my pc. There is a custom requirement script that is attached to the Acrobat Reader DC Continuous application to prevent the application from overwriting Adobe Acrobat DC PRO (64-bit). Script is listed below in case of accidental deletion.

# Script to determine if Adobe Acrobat Pro is installed, and only allow installation if it is not installed.


$Value = Get-ItemProperty -Path "HKLM:\SOFTWARE\Adobe\Adobe Acrobat\DC\Installer" -Name "SCAPackageLevel" -ErrorAction SilentlyContinue


if(($Value.SCAPackageLevel -ne 1) -and ($null -ne $Value.SCAPackageLevel)){

    Write-Output "NotApplicable"

}

else{

    Write-Output "Applicable"

}



Community-Scripts/Install/Requirement at main · PatchMyPCTeam/Community-Scripts · GitHub