Skip to main content
Participating Frequently
October 28, 2024
해결됨

Disable the AI Assistant on all Organization

  • October 28, 2024
  • 2 답변들
  • 10213 조회

Hello, is it possible to remotely disable the AI Assistant on all installations of Acrobat (Pro and Reader) in the Organization so that end users cannot access this feature?

Thank you

최고의 답변: S_S

Hi @Marco5E4C,

 

Hope you are doing well. Thanks for writing in!

You can roll it out in Active Directory by creating a GPO to add the registry key below and running gpupdate/force on the user machines.

 

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown

  • Create new D Word key: bEnableGentech
  • Value: 0
  • Setting the value to 1 will enable generative AI features.

 

If you are using Intune solely for device management, you can disable it via a remediation using two scripts.

 

Detection:

$path = "HKLM:\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown"
$name = "bEnableGentech"
$type = "DWORD"
$value = 0

Try { 
$Registry = Get-ItemProperty -Path $Path -Name $Name -ErrorAction Stop | Select-Object -ExpandProperty $Name If ($Registry -eq $Value)
{ Write-Output "Compliant" Exit 0 } else
{ Write-Warning "Not Compliant" Exit 1 } } Catch { Write-Warning "Not Compliant" Exit 1 }

 

Remediation:

#Fileext
$regkey="HKLM:\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown"
$name="bEnableGentech"
$value=0

#Registry Template
If (!(Test-Path $regkey))
{
    New-Item -Path $regkey -ErrorAction stop
}
if (!(Get-ItemProperty -Path $regkey -Name $name -ErrorAction SilentlyContinue))
{
    New-ItemProperty -Path $regkey -Name $name -Value $value -PropertyType DWORD -ErrorAction stop
    write-output "remediation complete"
    exit 0
}
set-ItemProperty -Path $regkey -Name $name -Value $value -ErrorAction stop
write-output "remediation complete"
exit 0

Note: Before running the script, please read and validate on your end.


-Souvik

2 답변

JR Boulay
Community Expert
Community Expert
October 30, 2024
Acrobate du PDF, InDesigner et Photoshopographe
S_S
Community Manager
S_SCommunity Manager답변
Community Manager
October 30, 2024

Hi @Marco5E4C,

 

Hope you are doing well. Thanks for writing in!

You can roll it out in Active Directory by creating a GPO to add the registry key below and running gpupdate/force on the user machines.

 

Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown

  • Create new D Word key: bEnableGentech
  • Value: 0
  • Setting the value to 1 will enable generative AI features.

 

If you are using Intune solely for device management, you can disable it via a remediation using two scripts.

 

Detection:

$path = "HKLM:\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown"
$name = "bEnableGentech"
$type = "DWORD"
$value = 0

Try { 
$Registry = Get-ItemProperty -Path $Path -Name $Name -ErrorAction Stop | Select-Object -ExpandProperty $Name If ($Registry -eq $Value)
{ Write-Output "Compliant" Exit 0 } else
{ Write-Warning "Not Compliant" Exit 1 } } Catch { Write-Warning "Not Compliant" Exit 1 }

 

Remediation:

#Fileext
$regkey="HKLM:\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown"
$name="bEnableGentech"
$value=0

#Registry Template
If (!(Test-Path $regkey))
{
    New-Item -Path $regkey -ErrorAction stop
}
if (!(Get-ItemProperty -Path $regkey -Name $name -ErrorAction SilentlyContinue))
{
    New-ItemProperty -Path $regkey -Name $name -Value $value -PropertyType DWORD -ErrorAction stop
    write-output "remediation complete"
    exit 0
}
set-ItemProperty -Path $regkey -Name $name -Value $value -ErrorAction stop
write-output "remediation complete"
exit 0

Note: Before running the script, please read and validate on your end.


-Souvik

Marco5E4C작성자
Participating Frequently
October 30, 2024

@S. S Thank you! Let's check the procedure

S_S
Community Manager
Community Manager
October 30, 2024

@Marco5E4C Sure!

 

I'll be on standby.

 

-Souvik