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 framework on target machine !
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Sep 04, 2007
08:51 AM
net framework on target machine !
Hi,
I have a basic msi project and i d like to know how i can verify if when i install my product if dotnet 2.0 is installed on the target machine !?
Thanks for your idea
Christophe
I have a basic msi project and i d like to know how i can verify if when i install my product if dotnet 2.0 is installed on the target machine !?
Thanks for your idea
Christophe
(3) Replies
‎Sep 04, 2007
08:57 AM
For a start, perhaps see if the MsiNetAssemblySupport property will help?
‎Sep 04, 2007
09:20 AM
I'm not completely sure as the the validdity of the search, but I typically set up a registry system search for
"HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727\Install"
I then store the value in some property, for example, DOTNETINSTALL.
At this point you can use the property like so: if DOTNETINSTALL = "#1", then the .NET Framework 2.0 is installed.
HTH.
"HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727\Install"
I then store the value in some property, for example, DOTNETINSTALL.
At this point you can use the property like so: if DOTNETINSTALL = "#1", then the .NET Framework 2.0 is installed.
HTH.
‎Sep 05, 2007
02:52 AM
Hi both,
Thanks for your reply
I've use the way by searching a registry key (system search) i've try just this morning and i think that works !
system search type registry key with your path.
Robert, i will look on the property (MsiNetAssemblySupport) later but thanks for your information.
Now, i will do a custom action with condition (DOTNETINSTALL AND versionNt=Vista) for install the dotnet 2.0 !
I found this a little bored because i've read and i've saw 🙂 on vista plateform there is always the 4 framework dotnet who are installed :
1.0
1.1
2.0
3.0
Have you notice this ?
Thanks for all
Christophe
Thanks for your reply
I've use the way by searching a registry key (system search) i've try just this morning and i think that works !
system search type registry key with your path.
Robert, i will look on the property (MsiNetAssemblySupport) later but thanks for your information.
Now, i will do a custom action with condition (DOTNETINSTALL AND versionNt=Vista) for install the dotnet 2.0 !
I found this a little bored because i've read and i've saw 🙂 on vista plateform there is always the 4 framework dotnet who are installed :
1.0
1.1
2.0
3.0
Have you notice this ?
Thanks for all
Christophe