When deploying another instance of a C# Windows Service the following error message is encountered:
“Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel”
Now the problem is that we actually do want 2 instances of the same service and version deployed.
In this case each service does the same thing for a customer that distributes 2 different brands. Rather than creating a multi-tenant application it was easier to just sell an additional license to an existing product.
So my questions:
Is the only way to get around this to alter the GUID for the product code of the service?
If so how can this been done automatically so I don't have to rebuild on each deploy? This error message kicks in prior to the install wizard so using custom screens during installation is not an option to solve this problem.