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
- :
- Re: installed dotnet2.0 ?!
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
‎Sep 05, 2007
10:06 AM
installed dotnet2.0 ?!
Hi,
I have a basic msi and i want to install dotnet 2.0 if there isn't present on the target machine !
for this, i've did a system search who looks on the registry after a key under :
hklm\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727\Install
i place the result in the property all works perfectly.
Now i've create a custom action => new exe store in binary table
i've selected the .exe dotnet for file
parameter command line : /q:a /c:"install /q" => (i've foundd on internet)
asychrone waits for exit code
deferred execution in system context
after installinitialize
condition Not MySystemSearch
And when i execute my setup the application is well installed but on the add remove program nothing appears about the dotnet 2.0 !?
I'd like to install net framework dotnet 2.0 and see it on the add remove program ?! is it possible?
Thanks
Christophe
I have a basic msi and i want to install dotnet 2.0 if there isn't present on the target machine !
for this, i've did a system search who looks on the registry after a key under :
hklm\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727\Install
i place the result in the property all works perfectly.
Now i've create a custom action => new exe store in binary table
i've selected the .exe dotnet for file
parameter command line : /q:a /c:"install /q" => (i've foundd on internet)
asychrone waits for exit code
deferred execution in system context
after installinitialize
condition Not MySystemSearch
And when i execute my setup the application is well installed but on the add remove program nothing appears about the dotnet 2.0 !?
I'd like to install net framework dotnet 2.0 and see it on the add remove program ?! is it possible?
Thanks
Christophe
5 Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 05, 2007
01:21 PM
You can do all of the checking and installing of dotnet 2.0 (dotnetfx.exe) with a prerequisite. No need for system search, binary table or custom action. And the entry "Microsoft .NET Framework 2.0" appears in "Add or Remove Programs".
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 06, 2007
02:09 AM
Hi,
sorry but on the prerequisite tab there is only setup prerequisite for dotnet 2.0 x64 or IA PLATEFORM NOT for plateform x86 !!!!
I have installshield 2008 edition prenium
All right, in release tab i can add the dotnet 2.0 in my setup (from source media) that's work but THE PROBLEM IS NOW this setup (net framework 2.0)will be start (install) on plateform vista ONLY and IF IS NOT PRESENT !!
And i don't find how to place a condition for to install the dotnet 2.0
I think system search and custom action will be the best way !?
can you confirm me !?
Thanks for your time
Christophe
sorry but on the prerequisite tab there is only setup prerequisite for dotnet 2.0 x64 or IA PLATEFORM NOT for plateform x86 !!!!
I have installshield 2008 edition prenium
All right, in release tab i can add the dotnet 2.0 in my setup (from source media) that's work but THE PROBLEM IS NOW this setup (net framework 2.0)will be start (install) on plateform vista ONLY and IF IS NOT PRESENT !!
And i don't find how to place a condition for to install the dotnet 2.0
I think system search and custom action will be the best way !?
can you confirm me !?
Thanks for your time
Christophe
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 06, 2007
02:31 AM
You don't need a system search. Adding it to the setup (from the release options) should be ok. The prerequisite will find out if it's installed or not, and behave accordingly.
Maybe you haven't downloaded it ? You should select "Prerequisite download" from the IS menu.
sorry but on the prerequisite tab there is only setup prerequisite for dotnet 2.0 x64 or IA PLATEFORM NOT for plateform x86 !!!!
Maybe you haven't downloaded it ? You should select "Prerequisite download" from the IS menu.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 06, 2007
07:48 AM
I had to build my own prereq for .NET Framework 2.0 x86. My setup includes both 32 bit and 64 bit versions as prereqs. The reason I do not use the release settings to get the 32 bit version is because my setup requires the .NET Framework to be available before files are copied because those files get loaded into the GAC and my setup uses gacutil.exe to remove the previous versions.:)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 06, 2007
08:26 AM
jcpohusk wrote:
I had to build my own prereq for .NET Framework 2.0 x86. My setup includes both 32 bit and 64 bit versions as prereqs. The reason I do not use the release settings to get the 32 bit version is because my setup requires the .NET Framework to be available before files are copied because those files get loaded into the GAC and my setup uses gacutil.exe to remove the previous versions.:)
So ? Just get the installer to reboot the system after .NET is installed if necessary --I think the property is called Delay reboot or something.
The files copy procedure happens long after .NET is installed.
