How to prevent running multiple instances of setup.exe created in installshield basic msi project?

1.6k Views Asked by At

I have created my application's setup in installshield - basic MSI project... Now when i am installing it, it allows me to run .exe multiple times simultanious... Please let me know, how can i stop it.....

1

There are 1 best solutions below

2
On

There is already a safe guard automatically built-into Windows Installer. If two or more of your installs actually try to install only the first one will install. The others will throw a message saying another install is already in progress. This is enforced by the _msiexecute mutex.

If you want to gate the situation earlier, you'll have to write your own custom actions to create your own custom mutex, tear it down when the install is complete and check for it when starting the install. However, I'd mark this problem as Functions as Designed and move on.