Forum Discussion
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?
- jmakhijaBrass Contributor
You can easily Create registry keys using the Intune remediations method or via a Powershell script.
- For creating the reg keys under HKLM, refer to: https://cloudinfra.net/how-to-create-registry-keys-using-intune-remediations/
- For creating the reg keys under HKCU, refer to: https://cloudinfra.net/how-to-create-hkcu-registry-keys-using-intune-remediations/
- JohnGillandersBrass ContributorThese are great guides, thank you!
- 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-CPHBrass 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,- VinodS2020Brass Contributor
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