[WiX-users] Custom action questoin

2008-09-16 Thread Jay H. Cho
Hi Anyone know how to execute aspnet_regiis from wix? Thank you. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Gra

Re: [WiX-users] MSI built with WiX-3.0.4513.0 Crash

2008-09-16 Thread Romeo Salayo Jr.
But when i used WiX-3.0.4401 everything is perfect, it just happens when I upgraded in to latest revision. All i was searching is: Anything wrong with my code? Thanks a lot! Regards, Romeo Wilson, Phil wrote: > > That log doesn't show a crash. It shows an AppS

Re: [WiX-users] Running Custom Action Before InstallFiles

2008-09-16 Thread Neil Sleightholm
I think the problem is that xcopy isn't in c:\ it is in system32 so you would need a fully qualified path to it. Neil Neil Sleightholm X2 Systems Limited [EMAIL PROTECTED] From: [EMAIL PROTECTED] on behalf of BOB1981 Sent: Tue 16

Re: [WiX-users] How can i select a file through bowse dialog

2008-09-16 Thread Richard
In article <[EMAIL PROTECTED]>, "Sandeep Gautam (HCL Technologies Ltd)" <[EMAIL PROTECTED]> writes: > I want to select a particular(txt or XML) file in between of my > installation. I am able to reach upto particular folder but can not > select any file in that f older. The best way to loc

Re: [WiX-users] Passing Control parameter with MSIEXEC command

2008-09-16 Thread Vivek
It worked for me, Thanks so much Phil. :-) Wilson, Phil wrote: > > Msiexec /I my.msi MYPROP=1 > > Will set the public property MYPROP. The you use it in a custom action > condition for running your cmd file. > > Phil Wilson > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[

[WiX-users] Writing language-neutral installers

2008-09-16 Thread Sean Farrow
Hi: Can someone give me pointers asto how to write a language neutral main installer. How would I then apply specific transforms using msiexec? Cheers Sean. __ Information from ESET NOD32 Antivirus, version of virus signature database 3446 (20080916) __ The message was

[WiX-users] Running Custom Action Before InstallFiles

2008-09-16 Thread BOB1981
Hi All, Everyone has been really helpfull here with me, first thankyou soo much for this help. Okey now my Question, I am trying to run a Custom action before Install Files , this action is to just xcopy existing folder from h:\Sites to h:\BackupSites , i added the custome action and InstallExec

Re: [WiX-users] SqlDatabase with multiple data files?

2008-09-16 Thread Jay Thaler
Thank you Dana! I will give that a go. The lack of support for this in WiX is troubling. I see the "fix" is to simply fail to compile if you specify two files. Boo. > Date: Tue, 16 Sep 2008 08:20:15 -0400> From: [EMAIL PROTECTED]> To: > wix-users@lists.sourceforge.net> Subject: Re: [WiX-u

Re: [WiX-users] How to Change Default Install Location

2008-09-16 Thread BOB1981
I just added this Property and it worked this changed the default rootdrive from C to E. Thanks for helping me out. Cheers. Francis Kam wrote: > > I wouldn't recommend forcing the user to use a specific location > (especially > a certain drive), but if you mus

Re: [WiX-users] Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread BOB1981
YUP its working... thanks dear for pointing to rihgt direction... Cheers Francis Kam wrote: > > Using a wxi should work. > > -Francis > > > > On Tue, Sep 16, 2008 at 10:20 AM, BOB1981 > <[EMAIL PROTECTED]>wrote: > >> >> Hi Fracis, >> >> Another IDEA, Do you think putting the Custom Actions

Re: [WiX-users] Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread Francis Kam
Using a wxi should work. -Francis On Tue, Sep 16, 2008 at 10:20 AM, BOB1981 <[EMAIL PROTECTED]>wrote: > > Hi Fracis, > > Another IDEA, Do you think putting the Custom Actions and > InstallExecuteSequence in a element rather then Fragment would > work and create a wxi file rather then wxs and

Re: [WiX-users] Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread BOB1981
Hi Fracis, Another IDEA, Do you think putting the Custom Actions and InstallExecuteSequence in a element rather then Fragment would work and create a wxi file rather then wxs and using include to add it into the product.wxs something like this... i actually have`t done this before, could a

Re: [WiX-users] Passing Control parameter with MSIEXEC command

2008-09-16 Thread Wilson, Phil
Msiexec /I my.msi MYPROP=1 Will set the public property MYPROP. The you use it in a custom action condition for running your cmd file. Phil Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Vivek Sent: Tuesday, September 16, 2008 8:46 AM To: wix-us

Re: [WiX-users] MSI built with WiX-3.0.4513.0 Crash

2008-09-16 Thread Wilson, Phil
That log doesn't show a crash. It shows an AppSearch taking a long time, perhaps because you're doing a long file search. Phil Wilson 949-639-1680 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Romeo Salayo Jr. Sent: Tuesday, September 16, 2008 12:44 AM

Re: [WiX-users] Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread BOB1981
Hi Fracis, as you know the Fragment is generated on the fly so as the custom actions and there id`s. So how can i ref the Custom action in product.wxs when the ID``s are generated on the FLY. Thanks Francis Kam wrote: > > Product.wxs has to reference the fragment somehow or another for it to

[WiX-users] Downloading files during installation

2008-09-16 Thread Sean Farrow
nformation from ESET NOD32 Antivirus, version of virus signature database 3446 (20080916) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com - This SF.Net email is sponsored by the Moblin

Re: [WiX-users] HA: Bitmaps and License file on custom UI's?

2008-09-16 Thread Kelly Leahy
That would only fix the one dialog that I'm defining. it won't fix the other 6 or so that are defined by WixUIExtension. I'm more concerned about those than this one :) Kelly Denis Zavorotnyuk <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 09/16/2008 08:39 AM Please respond to "General di

[WiX-users] Passing Control parameter with MSIEXEC command

2008-09-16 Thread Vivek
Hi, What i am trying to achieve is, i have a file "xyz.cmd" which is doing some registry cleanup, i wish to run this file only if i pass a parameter from command line (e.g. msiexec /i myinstall.msi -myparam) to my msi file. Is there a way i can do this, i looked for the mail archive all i

Re: [WiX-users] How to Change Default Install Location

2008-09-16 Thread Francis Kam
I wouldn't recommend forcing the user to use a specific location (especially a certain drive), but if you must, you can set the ROOTDRIVE property ( http://msdn.microsoft.com/en-us/library/aa371372(VS.85).aspx) to force the default root drive to E. Obviously you don't need the ProgramFilesFolder Di

[WiX-users] HA: Bitmaps and License file on custom UI's?

2008-09-16 Thread Denis Zavorotnyuk
Mmm May be this is fondly, but what if give another name for this picture instead of " WixUI_Bmp_Banner "? Regards, Denis Zavorotnyuk. > -Исходное сообщение- > От: [EMAIL PROTECTED] [mailto:wix-users- > [EMAIL PROTECTED] От имени Kelly Leahy > Отправлено: 16 сентября 2008 г. 19:08 > Кому

Re: [WiX-users] HA: Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread BOB1981
HI Denis, i have uploaded Setup_Install.log and Setup_Uninstall.log for your convenience... Thanks for looking into it dear. waiting for responce. Denis Zavorotnyuk wrote: > > Bob, can you run your MSI install with this command: > msiexec /l* "%temp%\setup.log" /I "your_msi" > and sh

Re: [WiX-users] Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread Francis Kam
Product.wxs has to reference the fragment somehow or another for it to get picked up. Assuming that only the contents of the CA are generated on the fly (i.e. you know the names beforehand) one way to do this is to use the CustomActionRef element in your Product.wxs. -Francis On Tue, Sep 16, 20

[WiX-users] How to Change Default Install Location

2008-09-16 Thread BOB1981
Hi All, I want my Msi Installer to have default install location as E:\Online\Sites\Local How can i do that. i know it must be real easy... Currently my Product.wxs file is this. I guess i need to make some changes at "ProgramfilesFolder" ID but i dont k

Re: [WiX-users] Multiple Instance Transforms Walkthrough, Proposed Simple Addition to WiX to Make Them Easier

2008-09-16 Thread shawny
This is great and exactly along the lines of what I'm trying to do. Can you post the whole wix file? And how have you approached the instance issue in respect to having to declare MyInstance1, MyInstance2, etc in the project? Is there a way to dynamically generate that? - Dont believe ever

Re: [WiX-users] Bitmaps and License file on custom UI's?

2008-09-16 Thread Kelly Leahy
Denis, I tried that previously, but the WixUIExtension library already defines one of those, so when I do it too, WiX complains about multiple definitions. Kelly Denis Zavorotnyuk <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 09/16/2008 03:17 AM Please respond to "General discussion for

[WiX-users] HA: Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread Denis Zavorotnyuk
Bob, can you run your MSI install with this command: msiexec /l* "%temp%\setup.log" /I "your_msi" and show this log-file? Regards, Denis Zavorotnyuk. > -Исходное сообщение- > От: [EMAIL PROTECTED] [mailto:wix-users- > [EMAIL PROTECTED] От имени BOB1981 > Отправлено: 16 сентября 20

[WiX-users] Custom Action and InstallExecuteSequence dont work in Fragment.

2008-09-16 Thread BOB1981
Hi All, I am generating this Wxs Fragment file and compiling it with my Product.wxs , it compiles and generates MSI package with no errors or warnings But when i run MSI and install/Uninstall the Features these custom actions are Not running At All, Then i thought to Run DARK against my MSI gen

Re: [WiX-users] SqlDatabase with multiple data files?

2008-09-16 Thread Dana Gutride
It's pretty easy to do in WiX though. You just have to write a sqlstring element that creates the filegroups for you. Use WiX to create your database, then add the following to a SqlString element. One thing to note is you do need a fully qualified filename so you'll need to make sure you resolv

Re: [WiX-users] Bitmaps and License file on custom UI's?

2008-09-16 Thread Denis Zavorotnyuk
Hello. Kelly, I'm not sure about what you are doing with Candle and "DefineConstant" but in order to add a picture into the dialog you should describe a Binary element with Id=" WixUI_Bmp_Banner " and src="your_path_to_the_picture". Such an element I don't see in your fragments but in the Dialog

[WiX-users] MSI built with WiX-3.0.4513.0 Crash

2008-09-16 Thread Romeo Salayo Jr.
Greetings, I'm currently using build 3.0.4401.0 and the MSI output work's perfect. Then I updated to my WiX to 3.0.4415/4422/4429/4513.0 and now every time i run the MSI built on these revisions the MSI crashed every time i run the MSI. Kindly have a look at the log file during installation http