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

Basic msi project requires .net framework 2.0

I'd like to configure our basic msi project to test for .net 2.0 and if not found,
to simply display a message and quit (or some variant under user control).

I'm having a hard time finding a way to do this. 😞
Any suggestions would be appreciated, and thanks.

-- Bill White
Labels (1)
0 Kudos
(3) Replies
RobertDickau
Flexera Alumni

If you want, you can set up your release to download the .NET 2.0 redistributable if the target system needs it; otherwise, you should be able to set up a launch condition that checks the value of the MsiNetAssemblySupport property.
0 Kudos
KathyMorey
Level 10

You could do an AppSearch for the presence of a registry key, then condition a type 19 custom action on that property.
0 Kudos
bwhite
Level 3

Thanks Robert, the launch condition will do the trick 🙂
0 Kudos