cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
maxou59
Level 3

Install condition : "Microsoft Message Queing" Installed

Hello,

I make a Basic MSI Project and I would like to install my product only if Microsoft Message Queing is installed.

I saw there is InstallCondition but I don't know what typing.

Can you help me ?

Sorry for my English, I'm not a native English.
Labels (1)
0 Kudos
(1) Reply
DMorisseau
Level 5

You'll want to search for a registry entry: set Registry Root to HKEY_LOCAL_MACHINE, Registry Key to Software\Microsoft\MSMQ\Setup, and Registry Value to InstalledComponents. Give the property a name and choose "Use In an Install condition", and supply the appropriate text you want to appear when the key is not found.

If you prefer to not stop the install right away, just store the value, and use MsiGetProperty somewhere early in your script to warn the user.
0 Kudos