I created an exe installer using Inno Setup and I packaged it in an MSI using MSIWrapper.
In order to do that I inserted the following lines in the iss (InnoSetup) file:
[...]
#define MyAppName "New_product_name"
AppName={#MyAppName}
AppId={#MyAppName}
[...]
And the following lines in the MSIWrapper XML configuration file:
[...]
<ProductName Detect="" Value="Value" />
[...]
I'd like to change the product name shown in the Uninstall section of the Control Panel.
If I change the iss MyAppName as follow:
[...]
#define MyAppName "New_product_name"
AppName={#MyAppName}
AppId={#MyAppName}
[...]
or the configuration XML as follow:
[...]
<ProductName Detect="" Value="New_product_name" />
[...]
or both and I perform an update two different programs, named Old_product_name and New_product_name, are shown in the Control Panel.
How can I proceed in order to reach my aim?
Thanks so much,
Daniele