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: Please Help!! Launching DotNET 3.5.1 install...
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 23, 2008
11:25 AM
Please Help!! Launching DotNET 3.5.1 install...
I have a basic MSI project... It creates 3 files, the setup.exe, the cab and the MSI file... Setup.exe gets executed...
I want to launch dotnet that is on the same CD... So I created a custom action...
Setup in attachment 1.bmp...
So the installation starts and I get this error...
See attachment 2.bmp...
How can I get this to work... The CD layout will be...
ROOT
...+-----SETUP THAT IS LAUNCHED
...|
...+-----DOT NET INSTALL THAT I WANT TO LAUNCH
TIA
I want to launch dotnet that is on the same CD... So I created a custom action...
Setup in attachment 1.bmp...
So the installation starts and I get this error...
See attachment 2.bmp...
How can I get this to work... The CD layout will be...
ROOT
...+-----SETUP THAT IS LAUNCHED
...|
...+-----DOT NET INSTALL THAT I WANT TO LAUNCH
TIA
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 24, 2008
03:11 PM
eposty wrote:
I have a basic MSI project... It creates 3 files, the setup.exe, the cab and the MSI file... Setup.exe gets executed...
I want to launch dotnet that is on the same CD... So I created a custom action...
Setup in attachment 1.bmp...
So the installation starts and I get this error...
See attachment 2.bmp...
How can I get this to work... The CD layout will be...
ROOT
...+-----SETUP THAT IS LAUNCHED
...|
...+-----DOT NET INSTALL THAT I WANT TO LAUNCH
TIA
Why dont you call DOTNET35 as a pre-req?
or
if you dont wanna do that then use LaunchAppAndWait for call your Dotnet35.exe.
HTH
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 27, 2008
08:26 AM
Gvarma wrote:
Why dont you call DOTNET35 as a pre-req?
or
if you dont wanna do that then use LaunchAppAndWait for call your Dotnet35.exe.
HTH
Well the Pre-req make the installation files too large according to upper management...
As for the LaunchAppAndWait, can that be done with an MSI project?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 27, 2008
09:52 AM
eposty wrote:
Well the Pre-req make the installation files too large according to upper management...
As for the LaunchAppAndWait, can that be done with an MSI project?
Yes, you could use LaunchAppAndWait for MSI projects as well.
you just have to prototype the function and then in the body of the fuction you call LaunchAppAndWait, then create a CA for this funciton and call it appropriate sequence...
HTH