Setting up and managing device configurations using Intune
@Jay Tee, Thanks for your update. I am glad the registry key can work. Then we can deploy this via PowerShell script. Here is the script for your reference:
$Path = "HKLM:\SOFTWARE\Policies\Adobe\Acrobat Reader\DC\FeatureLockDown"
$Key = "bDisableJavaScript"
$KeyFormat = "dword"
$Value = "1"
if(!(Test-Path $Path)){New-Item -Path $Path -Force}
if(!$Key){Set-Item -Path $Path -Value $Value
}
else{Set-ItemProperty -Path $Path -Name $Key -Value $Value -Type $KeyFormat}
Hope the above information can help.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.