Forum Discussion
admin-CPH
Feb 07, 2023Copper Contributor
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. S...
Feb 08, 2023
after thew new-item... add:
.\setup.exe /sAll
If you add that powershell script to the same folder as that exe file and convert it to an intunewinfile, you could also call up on this powershell script as install command
so instead of that install command in intune, change it to execute the powershell script
.\setup.exe /sAll
If you add that powershell script to the same folder as that exe file and convert it to an intunewinfile, you could also call up on this powershell script as install command
so instead of that install command in intune, change it to execute the powershell script
admin-CPH
Feb 09, 2023Copper Contributor
Rudy_Ooms_MVP
The install command is : msiexec /i AcroPro.msi /q
Do you mean to add the script as a file to the folder before I convert it to exe?
If yes, How to call the script in the install command?
Thanks
- Feb 09, 2023Yep.... thats what I was trying to explain
the install command should look something like this
powershell.exe -executionpolicy Bypass -file .\add-reg-key-adobe.ps1- admin-CPHFeb 10, 2023Copper Contributor
Install command: msiexec /i AcroPro.msi /q powershell.exe -executionpolicy Bypass -file .\reg.ps1
Correct?
- Feb 10, 2023nope.... powershell.exe -executionpolicy Bypass -file .\reg.ps1 and add that msiexec /i AcroPro.msi to that reg.ps1 one...