This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Procedure to package MSI and quick patch as one package
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 24, 2009
09:38 AM
Procedure to package MSI and quick patch as one package
Hi All,
I have created a quick patch for an MSI. I am in urgent need of a procedure to create one single MSI package containing the quick patch and the original MSI.
Please let me know how this can be done.
Thanks,
Naaz.
I have created a quick patch for an MSI. I am in urgent need of a procedure to create one single MSI package containing the quick patch and the original MSI.
Please let me know how this can be done.
Thanks,
Naaz.
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 24, 2009
12:06 PM
naaz6907 wrote:
Hi All,
I have created a quick patch for an MSI. I am in urgent need of a procedure to create one single MSI package containing the quick patch and the original MSI.
Please let me know how this can be done.
Thanks,
Naaz.
You could create an administrative install using
msiexec /a "D:\MEDIA\YourInstall.msi"
Then specify a UNC path to copy the administrative install to during the wizard.
Once that is done, you can apply your patch to the administrative install:
msiexec /a "\\UNC\Path\YourInstall.msi" /p YourPatch.msp
Here's more info:
http://msdn.microsoft.com/en-us/library/aa367568(VS.85).aspx
IMPORTANT: You need to fully test the patch administrative install to ensure it works the same as applying the msi and the patch separately. I've run into cases where small incompatibilities may exist.
Good luck!
For more reading, try the following google search:
"administrative install" patch site:microsoft.com