Hello all,
I'm trying to deploy an MSI and an MSP together as an Application in SCCM 2012. They are both in the same direct directory. They both are copied to the workstation.
On the "Programs" tab of the "Deployment Types" I've set the "Installation program" to the following
msiexec.exe /lvx* c:\Logs\ext.log /i "\\CAS\sources\Apps\TestPatch\TestInstall 1.msi" PATCH="\\CAS\sources\Apps\TestPatch\TestPatch 2.msp" \qn
This fails in SCCM with a 0x87D01106 error. If I put it in the batch file, it works perfectly.
I've also tried msiexec.exe /lvx* c:\Logs\ext.log /i "%~dp0eTestInstall 1.msi" PATCH="%~dp0eTestPatch 2.msp" \qn
Which also works in a batch file.
I've also tried msiexec.exe /lvx* c:\Logs\ext.log /i "TestInstall 1.msi" PATCH="TestPatch 2.msp" \qn
Which also works in a batch file.
If I put this in the "Installation program" msiexec.exe /lvx* c:\Logs\ext.log /i "TestInstall 1.msi" \qn without the Patch information then the application is deployed correctly.
Is there something I'm missing with deploying an application with a MSP?
.