Re: [WiX-users] Installing dotnet framework along with your MSI package

2007-07-05 Thread John Hall
I've been looking at bootstrappers recently, and I settled on
dotNetInstaller, an open source program at
http://www.devage.com/Wiki/ViewArticle.aspx?name=dotnetinstaller.
 
It will install as many prerequisites as you need. It is well written
and easy to modify (despite most of the comments being in Italian!), and
so if you need to customise it further, it is relatively
straightforward.
 
Cheers,
John



  _  

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pierson
Lee (Volt)
Sent: 03 July 2007 01:20
To: sanjay bhaskar; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing dotnet framework along with
your MSI package



That's the same thing I'm doing. You have to use a bootstrapper.
If you're using VS 2005, you can use the setup project and it will allow
you to check for .net framework .

 

The other way you can do it (which I did, but am having a heck
of a time) is to call the .net Framework redistributable at the end
using a custom action , but it has to be set after InstallFinalize so
that your wix windows installer instance ends when your dotnetfx.exe is
called. I did it this way and it works, although I don't know the
consequences of this beyond installing the framework AFTER your
application.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of sanjay
bhaskar
Sent: Monday, July 02, 2007 4:52 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing dotnet framework along with your
MSI package

 

How to include dotnet framework redistributable package
(dotnetfx.exe) as a part of your own installation package (MSI) such
that the dotnet framework gets installed during your installation
process(Like through customActions). the error i get is that another
installation is already in progress. How to get out of this problem and
install the dotnetfx.
 
Thanks


  _  


Make every IM count. Download Windows Live Messenger and join
the i'm Initiative now. It's free.   Make it count!
http://im.live.com/messenger/im/home/?source=TAGWL_June07 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing dotnet framework along with your MSI package

2007-07-03 Thread Pierson Lee (Volt)
It should complete. You'll need to find the flags to do it silently but you are 
right, there is no guarantee when it will complete or that it will finish if it 
encounters an error.

From: sanjay bhaskar [mailto:[EMAIL PROTECTED]
Sent: Monday, July 02, 2007 6:13 PM
To: Pierson Lee (Volt); wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Installing dotnet framework along with your MSI package

Thanks for the reply. I am not using VS 2005. Its all through the WIX. The 
solution using custom action and setting it to run after InstallFinalize seems 
cool but the problem is that i am trying to run the dotnetfx in quite mode 
without showing its UI as it is supposed to be a part of my package. But yes as 
you say its true, In this case if your installation completes there is no way 
to be sure that the installation of dotnetfx is complete or when will it be.

Thanks




From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Date: Mon, 2 Jul 2007 17:20:03 -0700
Subject: RE: [WiX-users] Installing dotnet framework along with your MSI package

That's the same thing I'm doing. You have to use a bootstrapper. If you're 
using VS 2005, you can use the setup project and it will allow you to check for 
.net framework .



The other way you can do it (which I did, but am having a heck of a time) is to 
call the .net Framework redistributable at the end using a custom action , but 
it has to be set after InstallFinalize so that your wix windows installer 
instance ends when your dotnetfx.exe is called. I did it this way and it works, 
although I don't know the consequences of this beyond installing the framework 
AFTER your application.



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sanjay bhaskar
Sent: Monday, July 02, 2007 4:52 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing dotnet framework along with your MSI package



How to include dotnet framework redistributable package (dotnetfx.exe) as a 
part of your own installation package (MSI) such that the dotnet framework gets 
installed during your installation process(Like through customActions). the 
error i get is that another installation is already in progress. How to get out 
of this problem and install the dotnetfx.

Thanks



Make every IM count. Download Windows Live Messenger and join the i'm 
Initiative now. It's free.   Make it 
count!http://im.live.com/messenger/im/home/?source=TAGWL_June07


Play free games, earn tickets, get cool prizes! Join Live Search Club.   Join 
Live Search Club!http://club.live.com/home.aspx?icid=CLUB_wlmailtextlink
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Installing dotnet framework along with your MSI package

2007-07-02 Thread sanjay bhaskar
How to include dotnet framework redistributable package (dotnetfx.exe) as a 
part of your own installation package (MSI) such that the dotnet framework gets 
installed during your installation process(Like through customActions). the 
error i get is that another installation is already in progress. How to get out 
of this problem and install the dotnetfx.
 
Thanks
_
With Windows Live Hotmail, you can personalize your inbox with your favorite 
color.
www.windowslive-hotmail.com/learnmore/personalize.html?locale=en-usocid=TXT_TAGLM_HMWL_reten_addcolor_0607-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing dotnet framework along with your MSI package

2007-07-02 Thread Pierson Lee (Volt)
That's the same thing I'm doing. You have to use a bootstrapper. If you're 
using VS 2005, you can use the setup project and it will allow you to check for 
.net framework .

The other way you can do it (which I did, but am having a heck of a time) is to 
call the .net Framework redistributable at the end using a custom action , but 
it has to be set after InstallFinalize so that your wix windows installer 
instance ends when your dotnetfx.exe is called. I did it this way and it works, 
although I don't know the consequences of this beyond installing the framework 
AFTER your application.

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sanjay bhaskar
Sent: Monday, July 02, 2007 4:52 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing dotnet framework along with your MSI package

How to include dotnet framework redistributable package (dotnetfx.exe) as a 
part of your own installation package (MSI) such that the dotnet framework gets 
installed during your installation process(Like through customActions). the 
error i get is that another installation is already in progress. How to get out 
of this problem and install the dotnetfx.

Thanks

Make every IM count. Download Windows Live Messenger and join the i'm 
Initiative now. It's free.   Make it 
count!http://im.live.com/messenger/im/home/?source=TAGWL_June07
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing dotnet framework along with your MSI package

2007-07-02 Thread sanjay bhaskar
Thanks for the reply. I am not using VS 2005. Its all through the WIX. The 
solution using custom action and setting it to run after InstallFinalize seems 
cool but the problem is that i am trying to run the dotnetfx in quite mode 
without showing its UI as it is supposed to be a part of my package. But yes as 
you say its true, In this case if your installation completes there is no way 
to be sure that the installation of dotnetfx is complete or when will it be.
 
Thanks


From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; [EMAIL PROTECTED]: Mon, 2 Jul 2007 
17:20:03 -0700Subject: RE: [WiX-users] Installing dotnet framework along with 
your MSI package






That’s the same thing I’m doing. You have to use a bootstrapper. If you’re 
using VS 2005, you can use the setup project and it will allow you to check for 
.net framework .
 
The other way you can do it (which I did, but am having a heck of a time) is to 
call the .net Framework redistributable at the end using a custom action , but 
it has to be set after InstallFinalize so that your wix windows installer 
instance ends when your dotnetfx.exe is called. I did it this way and it works, 
although I don’t know the consequences of this beyond installing the framework 
AFTER your application.
 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of sanjay 
bhaskarSent: Monday, July 02, 2007 4:52 PMTo: [EMAIL PROTECTED]: [WiX-users] 
Installing dotnet framework along with your MSI package
 
How to include dotnet framework redistributable package (dotnetfx.exe) as a 
part of your own installation package (MSI) such that the dotnet framework gets 
installed during your installation process(Like through customActions). the 
error i get is that another installation is already in progress. How to get out 
of this problem and install the dotnetfx. Thanks



Make every IM count. Download Windows Live Messenger and join the i'm 
Initiative now. It's free.   Make it count!
_
Make every IM count. Download Windows Live Messenger and join the i’m 
Initiative now. It’s free. 
http://im.live.com/messenger/im/home/?source=TAGWL_June07-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installing dotnet framework along with your MSI package

2007-07-02 Thread John Vottero
Google GenerateBootstrapper task.  That's what a Visual Studio 2005
project uses and it will work with a WiX generated MSI too.

 

The example in MSDN for the GenerateBootstrapper task shows the .NET
Framework as a prerequisite.

 

Forget about trying to install the .NET Framework from a CA, you're
asking for trouble doing that.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Pierson
Lee (Volt)
Sent: Monday, July 02, 2007 8:20 PM
To: sanjay bhaskar; wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installing dotnet framework along with your MSI
package

 

That's the same thing I'm doing. You have to use a bootstrapper. If
you're using VS 2005, you can use the setup project and it will allow
you to check for .net framework .

 

The other way you can do it (which I did, but am having a heck of a
time) is to call the .net Framework redistributable at the end using a
custom action , but it has to be set after InstallFinalize so that your
wix windows installer instance ends when your dotnetfx.exe is called. I
did it this way and it works, although I don't know the consequences of
this beyond installing the framework AFTER your application.

 

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of sanjay
bhaskar
Sent: Monday, July 02, 2007 4:52 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Installing dotnet framework along with your MSI
package

 

How to include dotnet framework redistributable package (dotnetfx.exe)
as a part of your own installation package (MSI) such that the dotnet
framework gets installed during your installation process(Like through
customActions). the error i get is that another installation is already
in progress. How to get out of this problem and install the dotnetfx.
 
Thanks



Make every IM count. Download Windows Live Messenger and join the i'm
Initiative now. It's free.   Make it count!
http://im.live.com/messenger/im/home/?source=TAGWL_June07 

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users