Forum Discussion

admin-CPH's avatar
admin-CPH
Brass Contributor
Feb 07, 2023

Add registry keys

Hi All,
I'm deploying Adope pro by Intune, and everything is going well, but I need to use the software as a reader for some users with no pro license and without the need for the user to sign in. So, in this case, I have to deploy to add some registry keys for the user's pc.
I have deployed to add the registry keys by writing a PowerShell script and pushing it by Intune.
I question how to add the registry keys simultaneously when the software is installed on the user's laptop.
Can I add the scripts to the -Install command- for example?

  • Just create a powershell script with those registry keys in it and as second launching the installer from that same powershell script (adobe pro silent install) . Convert it to a win32app and you are good to go
    • admin-CPH's avatar
      admin-CPH
      Brass Contributor

      Rudy_Ooms_MVP 
      Thanks for the comment.
      Here is the PowerShell script to add the registry keys:
      New-Item -Path 'Registry::HKLM\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown\cIPM'
      New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown\cIPM' -Name 'bDontShowMsgWhenViewingDoc' -Value 00000000 -PropertyType DWord -Force -ea SilentlyContinue;
      New-ItemProperty -LiteralPath 'HKLM:\SOFTWARE\Policies\Adobe\Adobe Acrobat\DC\FeatureLockDown' -Name 'bIsSCReducedModeEnforcedEx' -Value 00000001 -PropertyType DWord -Force -ea SilentlyContinue;

       

       

      And here is how I deployed Adobe pro on Intune:
      Deploy Adobe Acrobat Pro DC with Intune — Tim D'Annecy (tdannecy.me)

       

      So how to merge the PowerShell script with win32app?
      Is that what your suggestion?
      Thanks a lot,

      • VinodS2020's avatar
        VinodS2020
        Brass Contributor

        admin-CPH 

         

        Hi, 

         

        I wanted to change the registry key from DWARD=000001 to DWARD=000000 for below registry in Windows OS via Intune so how I can do this via PowerShell? 

         

        Can anyone share the script which does this tasks for us? 

         

        "PromptOnSecureDesktop"=dword:00000000 

         

         

Resources