Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WiX - Set MSI's Program name

in my WiX installer, if I right-click my MSI, hit Properties, go to Details, and browse the details of my MSI package, I see that under Origin, the default Program name is set to

Windows Installer XML Toolset (3.9.....

How can I change the Program name that appears in the Origin section of my MSI's details from my WiX project?

like image 630
Alexandru Avatar asked Sep 12 '25 22:09

Alexandru


1 Answers

That property is in the Summary Information Stream: Creating Application Summary property Windows Explorer simply calls it Program.

WiX follows the MSI standard and put's the name of the tool and version that created the MSI. WiX doesn't have any attributes in the schema to override this. If it really bugs you, you'd need to do a postbuild script to tweak the summary information stream prior to any code signing that you may do.

like image 67
Christopher Painter Avatar answered Sep 16 '25 09:09

Christopher Painter