I have two apps I am working on, both of which rely on the MSIGetProductInfo call to retrieve the serial number that a user entered during setup (a standard visual studio setup and deployment project).
Here is the code I am using to retrieve the serial number:
Int32 len = 512;
var builder = new StringBuilder(len);
MsiGetProductInfo("{98A0A10F-5E78-4FA6-83F6-6B356D75ADD4}", "ProductId", builder, ref len);
return builder.ToString();
The first app, a visual c# forms app, returns as I expect (when I enter 1111-1111-1111-1111, it indicates as such). However, when I put the same call in the OnStart method of a c# windows service, I get random garbage such as Unicode characters, occasionally a word, and the returned value is different on every runtime. Occasionally I get a result that contains part of the path of the dll which contains the MsiGetProductInfo call, such as "㷨H꿈Eindows\system32\msi.dll."
It looks to me (uneducated guess) like the call to the dll function is failing and it is just returning data from an unused memory location.
I have tried reading other properties, such as InstallSource and InstalledProductName, but those are garbage in the service as well (while also being fine in the forms app). I also thought it might be a permissions issue, so I have tried running the service under the NetworkService, LocalService, and LocalSystem accounts with no success.
Both the Forms app and the service are installed simultaneously by the same setup project, so they should share the same ProductCode, correct? If not, I could see why the service is failing to retrieve the product information.
Has anyone encountered this or have any idea what is causing this?