This does not specifically answer your question, but the
http://psappdeploytoolkit.com has functions that can really help with
installing and patching MSIs. Execute-MSI has a -patch parameter . . .
It's worth a look. . .
Jeff
From: [email protected]
Date: Wed, 4 Nov 2015 15:04:27 -0500
Subject: [mssms] Installing MSI and MSP a same time
To: [email protected]
Anyone have experience doing this with SCCM 2012? I'm not trying to use a
patch file on this, but will if I need to. Example command line: msiexec.exe
/i appname.msi PATCH=patch.msp /q. Apparently the PATCH= needs a full path. How
can I identify the temp path that the file will run from c:\windows\ccmcache\x?
I've tried:
msiexec.exe /i appname.msi PATCH=.\patch.msp /q
and
msiexec.exe /i appname.msi PATCH=~%dp0patch.msp /q
None seem to be working. Any help would be appreciated. Thanks!