{"id":7861,"date":"2024-05-03T11:16:55","date_gmt":"2024-05-03T11:16:55","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=7861"},"modified":"2024-05-03T11:16:58","modified_gmt":"2024-05-03T11:16:58","slug":"proactive-remmeidation-adobe-acrobat-generative-ai-how-to-permanently-disable","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/proactive-remmeidation-adobe-acrobat-generative-ai-how-to-permanently-disable","title":{"rendered":"Proactive Remmeidation : Adobe Acrobat generative AI: How to permanently disable"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code class=\"\">#Detect\n$path = \"HKLM:\\SOFTWARE\\Policies\\Adobe\\Adobe Acrobat\\DC\\FeatureLockDown\"\n$name = \"bEnableGentech\"\n$type = \"DWORD\"\n$value = 0\n\nTry {\n    $Registry = Get-ItemProperty -Path $Path -Name $Name -ErrorAction Stop | Select-Object -ExpandProperty $Name\n    If ($Registry -eq $Value){\n        Write-Output \"Compliant\"\n        Exit 0\n    } \n    else {\n    Write-Warning \"Not Compliant\"\n    Exit 1\n    }\n} \nCatch {\n    Write-Warning \"Not Compliant\"\n    Exit 1\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">#Remmediate\n#Fileext\n$regkey=\"HKLM:\\SOFTWARE\\Policies\\Adobe\\Adobe Acrobat\\DC\\FeatureLockDown\"\n$name=\"bEnableGentech\"\n$value=0\n\n#Registry Template\nIf (!(Test-Path $regkey))\n{\n    New-Item -Path $regkey -ErrorAction stop\n}\n\nif (!(Get-ItemProperty -Path $regkey -Name $name -ErrorAction SilentlyContinue))\n{\n    New-ItemProperty -Path $regkey -Name $name -Value $value -PropertyType DWORD -ErrorAction stop\n    write-output \"remediation complete\"\n    exit 0\n}\n\nset-ItemProperty -Path $regkey -Name $name -Value $value -ErrorAction stop\nwrite-output \"remediation complete\"\nexit 0<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-7861","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7861","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=7861"}],"version-history":[{"count":1,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7861\/revisions"}],"predecessor-version":[{"id":7862,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7861\/revisions\/7862"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=7861"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=7861"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=7861"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}