Salir
  • Comunidad global
    • Idioma:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티

Disable the AI Assistant on all Organization

Principiante de comunidad ,
Oct 28, 2024 Oct 28, 2024

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

TEMAS
Al Assistant , Procedimiento
8.0K
Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
1 SOLUCIÓN ACEPTADA
Empleado de Adobe ,
Oct 30, 2024 Oct 30, 2024

Hi @Marco5E4C,

 

Hope you are doing well. Thanks for writing in!

 

You can roll it out in an active directory by creating a GPO to add the below registry key, and run 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 solely using Intunes for device management, you can disable it via a remediation with 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

Ver la solución en mensaje original publicado

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Empleado de Adobe ,
Oct 30, 2024 Oct 30, 2024

Hi @Marco5E4C,

 

Hope you are doing well. Thanks for writing in!

 

You can roll it out in an active directory by creating a GPO to add the below registry key, and run 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 solely using Intunes for device management, you can disable it via a remediation with 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

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Principiante de comunidad ,
Oct 30, 2024 Oct 30, 2024

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

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Empleado de Adobe ,
Oct 30, 2024 Oct 30, 2024

@Marco5E4C Sure!

 

I'll be on standby.

 

-Souvik

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Principiante de comunidad ,
Nov 04, 2024 Nov 04, 2024

The problem has been solved.
Thank you very much!

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Empleado de Adobe ,
Nov 04, 2024 Nov 04, 2024

@Marco5E4C Great! 

 

Thanks for letting me know that it worked.

 

-Souvik

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Nuevo aquí ,
Mar 12, 2025 Mar 12, 2025
MÁS RECIENTES

Hello,

I applied this, but the AI feature is still available on Acrobat and Reader.  Is there a different for 64-bit installations?

Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines
Community Expert ,
Oct 30, 2024 Oct 30, 2024

Revert to the Classic UI: https://community.adobe.com/t5/acrobat-discussions/acrobat-2023-how-to-revert-to-classic-gui-user-in...

Were the AI assistant is not available.


Acrobate du PDF, InDesigner et Photoshopographe
Traducir
Informe
Directrices de la comunidad
Sé amable y respetuoso, muestra títulos de crédito de la fuente de contenido original y busca duplicados antes de publicar. Más información
community guidelines