Is anyone able to give an example of the code to perform these in order:
- Install EXE
- Install MSI
- Make Registry changes
I can tinker around with the install parameters myself
Is anyone able to give an example of the code to perform these in order:
I can tinker around with the install parameters myself
Execute-Process -FilePath "$dirFiles\folder\executable.exe" -Arguments "/S"
Execute-MSI -Action Install -Path "$dirfiles\folder\msifile.msi" -Parameters '/q'
reg.exe import $dirfiles\folder\file.reg
Thank you. I will play around with this. I appreciate you taking the time to reply