This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- .NET 3.5 problem
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Oct 29, 2008
12:31 AM
.NET 3.5 problem
I have posted an InstallShild 2009 problem earlier bu got not response. Is there a mailaddress whereto I can post problems??
Mu problem is;
I do have an installation that requires .NET 3.5.
On my target machine I have .NET3.5 SP1 installed. When I try to install my application (it requires .NET 3.5) on this machine my istallation fails stating that it requires "Microsoft .NET Framework needs to be installed for this installation to continue"
Mu problem is;
I do have an installation that requires .NET 3.5.
On my target machine I have .NET3.5 SP1 installed. When I try to install my application (it requires .NET 3.5) on this machine my istallation fails stating that it requires "Microsoft .NET Framework needs to be installed for this installation to continue"
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Oct 29, 2008
04:43 AM
You need to modify the install condition from Product Properties. You probably have something like:
DOTNETVERSION35="3.5.21022.08"
What you need to do is change the '=' sign to '>=':
DOTNETVERSION35>="3.5.21022.08"
By doing so, if SP1 exists on the target machine, the install will continue as the SP1 version is >= than the non SP1 version.
Hope that helps.
DOTNETVERSION35="3.5.21022.08"
What you need to do is change the '=' sign to '>=':
DOTNETVERSION35>="3.5.21022.08"
By doing so, if SP1 exists on the target machine, the install will continue as the SP1 version is >= than the non SP1 version.
Hope that helps.