Questions tagged [msi-patch]

A Windows Installer patch (.msp file) is a file used to deliver updates to Windows Installer applications.

A Windows Installer patch is a self-contained package that contains all the information required to update the target application. A patch package (.msp file) can be much smaller than the Windows Installer package (.msi file) for the entire updated application. A Windows Installer patch is merely a packaging mechanism for an existing MSI update type such as minor or major upgrades. A working minor or major upgrade is required for a patch to be possible to create.

50 questions
0
votes
1 answer

WiX: Change .msi Directory and CustomAction table with changes to be used by .msp Patch file

with the Wix Toolset v3.11 I have created a .msi file for my application (let's say version 1.1) with a Directory element that targets the LocalAppDataFolder and puts a Temp folder underneath. This structure is used with a DirectoryRef element to…
schroeder
  • 153
  • 9
0
votes
0 answers

WiX customaction doesnot have value for session.Property["CustomActionData"]

I have to pass a value to my custom action in patch release for my feature. I did some research and did the following:
0
votes
0 answers

Missing Feature when applying a MSP patch

We have a piece of software that's installed with Installshield, currently at version 5.0.1. Between the version 4.9 and 5.0.0, a new Installshield Feature, REDIST, containing Redistribuables, was added to the Installshield project. The version 5.0…
baudsp
  • 4,076
  • 1
  • 17
  • 35
0
votes
1 answer

Unable to uninstall chained programs when UnInstalling the parent program

Actual problem: First time when we install the products, we can see 3 programs in control panel, 1 master(A) and 2 chained (B,C). Lets say, we now update B to a new version. This version update has assigned a new ProductCode to B. But the new…
Rajesh Mishra
  • 436
  • 5
  • 15
0
votes
3 answers

Error 1603 during MSP Installation

I have an error during updating our software by using an MSP file wrapped in an EXE file. I have the following versions: 1.5.1810.0008 and 1.5.1810.0010 Version '0008' is fully installed by an MSI file wrapped into an EXE File (created by Advanced…
Denis
  • 107
  • 1
  • 13
0
votes
0 answers

How to fix the .Net Framework 3.5 SP1 Error when publish desktop application C#?

I'm trying to Deployment C# desktop app with 'Download prerequisite from the same location as my application'. and when I start the publish wizard I get this Error: Severity Code Description Project File Line Suppression State Error …
0
votes
1 answer

Can we deliver an updated text file (any non versioned file) in an MSP

Step 1: I have an updated msi which has a new text file : env.info an msp generated out of it places this text file in the folder. Step 2: I have updated this text file and generated an msp again, now this msp doesn't replace the new file. Any idea…
MPK
  • 77
  • 1
  • 7
0
votes
0 answers

Programmatically extract contents on an MSP file using C# Or any tool to view the contents without applying the patch (example: MSI unpacker)

I would like to view the content such as fileversion, Filename, registry settings for an MSP file without installing the patch. Just like (MSI Unpacker Link) which provide me with this data. Is there a tool that could serve this purpose for an MSP…
0
votes
1 answer

WIX - Rename shortcut in MSP

I am not that experienced with WiX and I am having a problem when renaming a shortcut during update via MSP. In my previous MSI I have created a desktop shortcut using the following
user474541
  • 25
  • 1
  • 4
0
votes
0 answers

Minor Upgrade Patch Issue

I have created a installer with version 5.2.1, patch 5.2.2 adds some new components to an existing feature, while installing patch 5.2.3 one of my features is not installting. Its state is Advertise because the log suggests one of the components…
Aakash
  • 9
  • 4
0
votes
1 answer

Wix Minor Upgrade patch doesn't change version when created using Purely Wix (v3.10.3.3007)

1) I created a patch using the following wix tutorial (using PCP) http://wixtoolset.org/documentation/manual/v3/patching/patch_building.html The tutorial uses same product.wxs (with 1.0.0 version) for both the MSIs generation, but I used…
Sudheer
  • 81
  • 7
0
votes
1 answer

How to get around this "Internal PatchWiz Error occurred Cannot create folder" error when building WiX PCP patching targets in parallel?

I am trying to build a pair of WiX patch projects (the Patch Creation ones..) in parallel however my 64-bit configuration one always fails with PatchWiz errors: INFO: Passed all of the main control parameter validation to PatchWiz, now calling the…
JohnZaj
  • 3,080
  • 5
  • 37
  • 51
0
votes
1 answer

application and binary files are not getting updated when applying patch where trying to add registry key

I am trying to create a patch (.msp file) using wix, where I am copying some files to installation path of the application (Program files) and also trying to add registry key. While installing (using msi) it works fine as expected, binaries are…
sai
  • 11
  • 4
0
votes
1 answer

Un-installation of the package is not supported

I'm trying to generate an MSP out of the latest and previous MSIs as in the scenario below: The previous MSI is fixed and used as a baseline. The latest MSI is generated with the new modification on the files included everynight and it will get a…
0
votes
1 answer

Installing MS SQL Server 2012 during application installation

There is this financial application which its man executive file is written by Delphi language. Im working on its setup project. it has so many steps. the most confusing required step is installing MS SQL Server with custom condition. so im just…