Is it possible to mimic the way SQL Server installation works? With SQL Server you could have multiple "named instances" installed on the same machine. I believe it is one single executable but they do something in the registry to make it multiple instance. Anyone knows how SQL Server achieves this?
We have a window service develop with .net c# and would like to do the same. Having multiple instance running on the same machine...
It's a WCF service.
What I'd like to achieve is the user can run the MSI multiple times, and every time the user must provide an instance name. the instance name is the name that will appear in the services.msc So running the msi multiple time will end up have multiple instances in the services.msc
Can this be done with only one exe? Or I have to install each instance in different directory .. ?