Is it possible to read package code through custom action as reading ProductCode and ProductName. I want to remove the MSI cache being created in %LOCALAPPDATA%/Downloaded Installations/GUID, where GUID is the package code during uninstallation.
how to read package code through custom action
635 Views Asked by gopu At
2
There are 2 best solutions below
6

Let's walk this through. First we have to answer where the package code is stored. Package Codes covers this in its third paragraph: "The package code is stored in the Revision Number Summary Property of the Summary Information Stream." Ok, so how do we read that? That's covered on Using the Summary Information Stream, where you start with a call to MsiGetSummaryInformation. But this code will be called from a custom action, so let's verify it's okay. Functions not for Use in Custom Actions covers this. Scanning the list we find no mention of the summary information functions (except MsiCreateTransformSummaryInfo which we don't need here).
So yes, this is possible.
You might want to take a look at this code I wrote awhile back: (the entire thread is a good read)
Local cached MSI does not get deleted when uninstalling