[WiX-users] Recommendations needed on checking GAC for installation or ComponentSearch

2009-02-06 Thread Kevin Fischer

I need to determine if a feature from SQL Server has been installed (SMO) in my 
MSI.  This feature can be installed via the core SQL Server package or via 
standalone redist MSIs.
 
I know I need only a few DLLs installed by this feature's component into the 
GAC.
 
Is the recommended way to detect this via ComponentSearch/FileSearch (I know 
the Component IDs) or a DirectorySearch/FileSearch on the GAC?
 
My concern with the ComponentSearch would be if they revise their GUIDs in the 
future.  
 
If I do the GAC search, is there a WIX variable I can use for the GAC directory?
 
Thanks,
Kevin
_
Windows Live™: Keep your life in sync. 
http://windowslive.com/howitworks?ocid=TXT_TAGLM_WL_t1_allup_howitworks_022009
--
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problems executing SQL script to insert data

2008-12-16 Thread Kevin Fischer

It's just in the MSI log where I see the format.  It's using WcaLog.
 
I was using the log to try to diagnose the problem and noticed it had that 
behavior.> Date: Tue, 16 Dec 2008 19:09:42 -0500> From: 
christopher.kar...@gmail.com> To: wix-users@lists.sourceforge.net> Subject: Re: 
[WiX-users] Problems executing SQL script to insert data> > You're not using 
SqlString items to do these? SqlScript doesn't format.> > Chris> > On Tue, Dec 
16, 2008 at 6:40 PM, Kevin Fischer> wrote:> > >> > 
I'm already using SqlScript elements to load them as a file.> >> > Kevin> Date: 
Tue, 16 Dec 2008 18:23:30 -0500> From:> > christopher.kar...@gmail.com> To: 
wix-users@lists.sourceforge.net>> > Subject: Re: [WiX-users] Problems executing 
SQL script to insert data> > You> > either need to load them as SqlScript 
elements from a file, or escape> the> > square brackets according to Formatted 
String rules. I think it's [\[]> and> > [\]], but you'll want to double check 
that.> > Or, you could always wing it,> > and just run without brackets. You 
may find> it works just fine.> > Chris> >> > On Tue, Dec 16, 2008 at 6:15 PM, 
Kevin Fischer> <> > kevinfischer...@hotmail.com>wrote:> > >> > I have an MSI 
that's running a> > SQL script to insert data (using the> > SqlScript wix 
element). The sql> > script looks like (simplified somewhat):> >> > /* table: 
Version */> > /*> > some comment*/> > INSERT INTO [dbo].[Version] 
([Object],[Version]) VALUES> > ('mytool',> > '2.0.12344.1234')GO> > /* some 
comment*/> > INSERT INTO> > [dbo].[Version] ([Object],[Version]) VALUES 
('foo',> > '2.0.0.1')GO> >> >> > When I run the MSI, my two records don't get 
inserted into the table. I've>> > > enabled verbose logging and I don't see any 
errors:> >> >> > ExecuteSqlStrings: Executing SQL string: INSERT INTO . (,) 
VALUES> >> > ('mytool, '2.0.12344.1234')ExecuteSqlStrings: Executing SQL 
string: INSERT>> > > INTO . (,) VALUES ('azApps', '2.0.0.1')> > I have 
"ContinueOnError=no" in> > my wix file. I assume the table and column> > names 
are disappearing in the> > log due to it being a formatted string. I'm> > also 
assuming this isn't> > happening when actually executing the SQL. This is> > on 
wix 3.0.4707.0. I> > have other MSIs with similar structure that> > 
successfully insert data via> > SQL script.> >> > Any suggestions on tracking 
this down?> >> > Thanks,> >> > Kevin> > 
_>> > > You 
live life online. So we put Windows on the web.> >> > 
http://clk.atdmt.com/MRT/go/127032869/direct/01/> >> >> > 
-->>
 > > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas,> > 
Nevada.> > The future of the web can't happen without you. Join us at MIX09> > 
to help> > pave the way to the Next Web now. Learn more and register at> >>> > 
>> > 
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/>> 
> > ___> > WiX-users mailing list>> 
> > WiX-users@lists.sourceforge.net> >> > 
https://lists.sourceforge.net/lists/listinfo/wix-users> >>> > 
-->>
 > SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, 
Nevada.>> > The future of the web can't happen without you. Join us at MIX09 to 
help>> > pave the way to the Next Web now. Learn more and register at>> > 
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/>> 
> ___> WiX-users mailing list>> > 
WiX-users@lists.sourceforge.net>> > 
https://lists.sourceforge.net/lists/listinfo/wix-users> > 
_> > Suspicious 
message? There's an alert for that.> >> > 
http://windowslive.com/Explore/hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_broad2_122008>
 >> > 
--> 
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.> 
> The futu

Re: [WiX-users] Problems executing SQL script to insert data

2008-12-16 Thread Kevin Fischer

I'm already using SqlScript elements to load them as a file.
 
Kevin> Date: Tue, 16 Dec 2008 18:23:30 -0500> From: 
christopher.kar...@gmail.com> To: wix-users@lists.sourceforge.net> Subject: Re: 
[WiX-users] Problems executing SQL script to insert data> > You either need to 
load them as SqlScript elements from a file, or escape> the square brackets 
according to Formatted String rules. I think it's [\[]> and [\]], but you'll 
want to double check that.> > Or, you could always wing it, and just run 
without brackets. You may find> it works just fine.> > Chris> > On Tue, Dec 16, 
2008 at 6:15 PM, Kevin Fischer> wrote:> > >> > I 
have an MSI that's running a SQL script to insert data (using the> > SqlScript 
wix element). The sql script looks like (simplified somewhat):> >> > /* table: 
Version */> > /* some comment*/> > INSERT INTO [dbo].[Version] 
([Object],[Version]) VALUES ('mytool',> > '2.0.12344.1234')GO> > /* some 
comment*/> > INSERT INTO [dbo].[Version] ([Object],[Version]) VALUES ('foo',> > 
'2.0.0.1')GO> >> > When I run the MSI, my two records don't get inserted into 
the table. I've> > enabled verbose logging and I don't see any errors:> >> > 
ExecuteSqlStrings: Executing SQL string: INSERT INTO . (,) VALUES> > ('mytool, 
'2.0.12344.1234')ExecuteSqlStrings: Executing SQL string: INSERT> > INTO . (,) 
VALUES ('azApps', '2.0.0.1')> > I have "ContinueOnError=no" in my wix file. I 
assume the table and column> > names are disappearing in the log due to it 
being a formatted string. I'm> > also assuming this isn't happening when 
actually executing the SQL. This is> > on wix 3.0.4707.0. I have other MSIs 
with similar structure that> > successfully insert data via SQL script.> >> > 
Any suggestions on tracking this down?> >> > Thanks,> > Kevin> > 
_> > You live 
life online. So we put Windows on the web.> > 
http://clk.atdmt.com/MRT/go/127032869/direct/01/> >> > 
--> 
> SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.> 
> The future of the web can't happen without you. Join us at MIX09 to help> > 
pave the way to the Next Web now. Learn more and register at> >> > 
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/> > 
___> > WiX-users mailing list> > 
WiX-users@lists.sourceforge.net> > 
https://lists.sourceforge.net/lists/listinfo/wix-users> >> 
--> 
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.> 
The future of the web can't happen without you. Join us at MIX09 to help> pave 
the way to the Next Web now. Learn more and register at> 
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/> 
___> WiX-users mailing list> 
WiX-users@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wix-users
_
Suspicious message? There’s an alert for that. 
http://windowslive.com/Explore/hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_broad2_122008
--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Problems executing SQL script to insert data

2008-12-16 Thread Kevin Fischer

I have an MSI that's running a SQL script to insert data (using the SqlScript 
wix element).  The sql script looks like (simplified somewhat):
 
/* table: Version */
/* some comment*/
INSERT INTO [dbo].[Version] ([Object],[Version]) VALUES ('mytool', 
'2.0.12344.1234')GO
/* some comment*/
INSERT INTO [dbo].[Version] ([Object],[Version]) VALUES ('foo', '2.0.0.1')GO
 
When I run the MSI, my two records don't get inserted into the table.  I've 
enabled verbose logging and I don't see any errors:
 
ExecuteSqlStrings:  Executing SQL string: INSERT INTO . (,) VALUES ('mytool, 
'2.0.12344.1234')ExecuteSqlStrings:  Executing SQL string: INSERT INTO . (,) 
VALUES ('azApps', '2.0.0.1')
I have "ContinueOnError=no" in my wix file.  I assume the table and column 
names are disappearing in the log due to it being a formatted string.  I'm also 
assuming this isn't happening when actually executing the SQL.  This is on wix 
3.0.4707.0.  I have other MSIs with similar structure that successfully insert 
data via SQL script.
 
Any suggestions on tracking this down?  
 
Thanks,
Kevin
_
You live life online. So we put Windows on the web. 
http://clk.atdmt.com/MRT/go/127032869/direct/01/
--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Light error LGHT0217 occuring often on Win2k8

2008-11-20 Thread Kevin Fischer

Okay.  I was the impression from the earlier thread it had do with how light 
was launching the ICE validation.  I'll send a mail to the windows installer 
folks.> From: [EMAIL PROTECTED]> To: wix-users@lists.sourceforge.net> Date: 
Thu, 20 Nov 2008 15:26:50 -0800> Subject: Re: [WiX-users] Light error LGHT0217 
occuring often on Win2k8> > I'm not aware of a bug tracking it. You'd need to 
follow up with the Windows Installer team. They own the ICEs.> > -----Original 
Message-> From: Kevin Fischer [mailto:[EMAIL PROTECTED]> Sent: Thursday, 
November 20, 2008 14:43> To: wix-users@lists.sourceforge.net> Subject: 
[WiX-users] Light error LGHT0217 occuring often on Win2k8> > > I saw a thread 
on this the other week, but there didn't appear to be a conclusion/resolution.> 
> We're using a recent WIX build and regularly see LGHT0217 with various ICE 
errors on Win2008. It's gotten so problematic we had to temporarily disable ICE 
validation.> > Is there a bug tracking this? Is there additional diagnostics I 
can provide to help out?> > Thanks,> Kevin> 
_> Get more 
done, have more fun, and stay more connected with Windows Mobile(r).> 
http://clk.atdmt.com/MRT/go/119642556/direct/01/> 
-> 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> Grand 
prize is a trip for two to an Open Source event anywhere in the world> 
http://moblin-contest.org/redirect.php?banner_id=100&url=/> 
___> WiX-users mailing list> 
WiX-users@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wix-users> > > 
-> 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> Grand 
prize is a trip for two to an Open Source event anywhere in the world> 
http://moblin-contest.org/redirect.php?banner_id=100&url=/> 
___> WiX-users mailing list> 
WiX-users@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wix-users
_
Windows Live Hotmail now works up to 70% faster.
http://windowslive.com/Explore/Hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_faster_112008
-
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
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Light error LGHT0217 occuring often on Win2k8

2008-11-20 Thread Kevin Fischer

I saw a thread on this the other week, but there didn't appear to be a 
conclusion/resolution.
 
We're using a recent WIX build and regularly see LGHT0217 with various ICE 
errors on Win2008.  It's gotten so problematic we had to temporarily disable 
ICE validation.
 
Is there a bug tracking this?  Is there additional diagnostics I can provide to 
help out?
 
Thanks,
Kevin
_
Get more done, have more fun, and stay more connected with Windows Mobile®. 
http://clk.atdmt.com/MRT/go/119642556/direct/01/
-
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
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Define constants not working with candle in 3.0.2921.0?

2007-06-07 Thread Kevin Fischer
That worked.  
 
I re-read the documentation and I now see this mentioned, but it's not 
especially clear.  Is there a formal process for updating the documentation?
 
Thanks,
Kevin


Date: Thu, 7 Jun 2007 15:09:06 -0400From: [EMAIL PROTECTED]: [EMAIL PROTECTED]; 
[EMAIL PROTECTED]: Re: [WiX-users] Define constants not working with candle in 
3.0.2921.0?



Your ifdef should look like

 
-Brian Simoneau


-Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On 
Behalf Of Kevin FischerSent: Thursday, June 07, 2007 2:44 PMTo: [EMAIL 
PROTECTED]: [WiX-users] Define constants not working with candle in 
3.0.2921.0?I have some code like this:  The command 
line for candle looks like:candle.exe -dDebug  -out obj\Debug\Base.wixobj -ext 
..\..\..\..\v1_tools\wix\bin\WixUtilExtension.dll Base.wxs But, I'm seeing 
$(var.Flavor2) evaluate to "Release".  I would've expected it to be Debug based 
on the -dDebug on the candle command line. Am I doing something wrong?  Or is 
there possible a bug in candle? I've also tried "-dDebug=1", but that didn't 
help. Thanks,Kevin

Change is good. See what's different about Windows Live Hotmail. Check it out! 
_
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


[WiX-users] Define constants not working with candle in 3.0.2921.0?

2007-06-07 Thread Kevin Fischer
I have some code like this:
 






 
The command line for candle looks like:
candle.exe -dDebug  -out obj\Debug\Base.wixobj -ext 
..\..\..\..\v1_tools\wix\bin\WixUtilExtension.dll Base.wxs
 
But, I'm seeing $(var.Flavor2) evaluate to "Release".  I would've expected it 
to be Debug based on the -dDebug on the candle command line.
 
Am I doing something wrong?  Or is there possible a bug in candle?
 
I've also tried "-dDebug=1", but that didn't help.
 
Thanks,
Kevin
_
With Windows Live Hotmail, you can personalize your inbox with your favorite 
color.
www.windowslive-hotmail.com/learnmore/personalize.html?locale=en-us&ocid=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] Customizing dialogs

2007-05-23 Thread Kevin Fischer
I've decided the easiest solution right now is to use a copy of the dialog 
source tree (src\ext\uiextension\wixlib) and make just minor modifications to 
it.  If later a way of modifying the dialogs is available then I would be able 
to take advantage of it pretty easily.
 
The only problem I've run into is that UIExtension also builds PrintEula.dll 
for the Print custom action.
 
I looked through the various binary and source downloads, but PrintEula.dll 
isn't available in any built form.
 
Is there a way to either extract out PrintEula.dll from WixUIExtension.dll for 
my own use?  
 
Or somehow use it while referencing WixUIExtension.dll?  If I add 
WixUIExtension.dll via light.exe then I get duplicate symbol errors.  So 
ideally I'd somehow refer to just that binary element.
 
Thanks,
Kevin


Date: Tue, 22 May 2007 21:10:13 -0700From: [EMAIL PROTECTED]: [EMAIL 
PROTECTED]: [EMAIL PROTECTED]: Re: [WiX-users] Customizing dialogs
Kevin Fischer wrote: 


I'm currently using the WixUI_InstallDir dialog set for my install UI. I need 
to make several minor changes to the stock dialogs including:1) removing 
specific icons from dialogs2) using different text for a few of the controls3) 
removing controls and changing their behaviorThe MSI UI model doesn't really 
allow fine-grained customization; we added some of that via the "floating" 
Publish element to let you specify behavior outside the dialog element. (The 
WixUI_InstallDir.wxs fragment has them for most of its dialogs, for example.) 
Currently, it's only possible to add behavior; you can't remove anything.It 
might be possible to use control conditions to hide the elements you're 
interested in removing but right now, there's no such thing as a "floating" 
Condition element. It'd make a great addition, however, so feel free to file a 
feature request or submit a patch.-- 
sig://boB
http://joyofsetup.com/
_
Change is good. See what’s different about Windows Live Hotmail. 
http://www.windowslive-hotmail.com/learnmore/default.html?locale=en-us&ocid=RMT_TAGLM_HMWL_reten_changegood_0507
-
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] Customizing dialogs

2007-05-22 Thread Kevin Fischer
I'm currently using the WixUI_InstallDir dialog set for my install UI.
 
I need to make several minor changes to the stock dialogs including:
1) removing specific icons from dialogs
2) using different text for a few of the controls
3) removing controls and changing their behavior
 
I know I can change text (#2) by using a new localization file.
 
Are the other items possible without copying the entire UI source code into my 
project?  I was unable to figure out how to do #1 or #2 without doing that.
 
I know about inserting/removing dialogs into the sequence, but I would end up 
defining replacements for most of the core dialogs if I did that.
 
Thanks,
Kevin
 
 
_
Add some color. Personalize your inbox with your favorite colors.
www.windowslive-hotmail.com/learnmore/personalize.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_addcolor_0507-
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] CloseApplication not complete?

2007-05-18 Thread Kevin Fischer
I want to close a particular running application during uninstall (though maybe 
install too).  This is an application that gets installed by my setup.
 
I was trying to use CloseApplication to do this, but the application didn't 
close.  It only scheduled the system reboot for the application to close.
 
I looked at the source code and it appears that the actual close implementation 
isn't there (or I missed it).  This is in V3 of WiX.  Is there a timeframe for 
implementation of this?  Or is there another accepted way of accomplishing this?
 
Thanks,
Kevin
 
 
_
Add some color. Personalize your inbox with your favorite colors.
www.windowslive-hotmail.com/learnmore/personalize.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_addcolor_0507-
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] problem starting service dependent on GAC on Vista

2007-05-17 Thread Kevin Fischer
I'm writing an install that installs a service which is dependent on GAC files 
that are also being installed.
 
Reading through the various threads I figured out why my use of ServiceControl 
to Start this service wasn't working.  The explanation I read was that GAC 
files don't get installed until InstallFinalize and ServiceControl's Start 
happens before then.
 
My workaround (based on another message) was to use CAQuietExec to launch a 
command line "command /c net start foo.service" in immediate mode after 
InstallFinalize.  This worked fine on XP.
 
On Vista, this no longer works.  I don't see an error in the log, but the 
service never gets started.  In various messages, its been stated that custom 
actions can't be run as deferred after InstallFinalize on Vista.
 
Is there a way to start a service that depends on files installed to the GAC on 
Vista?  Perhaps another way to structure my MSI?
 
Thanks,
Kevin
 
 
_
Create the ultimate e-mail address book. Import your contacts to Windows Live 
Hotmail.
www.windowslive-hotmail.com/learnmore/managemail2.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_impcont_0507-
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] Problem using Action attribute on Custom element

2007-05-16 Thread Kevin Fischer
FYI, I was able to figure out how to use CAQuietExec by searching through the 
mailing list archive.
 
Thanks,
Kevin


From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: [EMAIL PROTECTED]: RE: [WiX-users] 
Problem using Action attribute on Custom elementDate: Wed, 16 May 2007 14:17:37 
-0600


Actually that was the complete error message:candle.exe(0,0): Error CNDL0001: 
Cannot set column 'Action' with a null value because this is a required 
field.Julie hit upon the solution in another reply.  I needed to add an "Id" 
attribute to the CustomAction Property="QtExecDeferred" listed below.  The 
error message was a little misleading though. Now I'm running into a new issue 
though.  It can't find wixca.dll.  I didn't see it under \program files\windows 
installer xml\...   Is there a new way to use CAQuietExec in Wix V3? 
Thanks,Kevin


Date: Tue, 15 May 2007 19:59:48 -0700From: [EMAIL PROTECTED]: [EMAIL 
PROTECTED]: [EMAIL PROTECTED]: Re: [WiX-users] Problem using Action attribute 
on Custom elementCan you post the complete error message? If you want to use 
WiX v3, you should update more often, from the weekly releases site if there 
aren't "official" releases.Kevin Fischer wrote: 


Any thoughts on how to fix this?   Should I not be using V3 of WiX?  I was 
under the impression that I needed to use V3 if I wanted to use the 
"feature-rich" version of Votive. Thanks,Kevin


From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Mon, 14 May 2007 16:08:00 
-0600Subject: [WiX-users] Problem using Action attribute on Custom element

I'm trying to execute a deferred command line in my MSI.  I want it to execute 
only on uninstall prior to a service being stopped/uninstalled. I'm following 
the code snippet I found in the help.  So I have some code like:  
Installed When I try to compile this I get 
the error:  Cannot set column 'Action' with a null value because this is a 
required field.  I'm using WiX version 3, the version released in December 
2006. Any ideas? Thanks,Kevin

Change is good. See what's different about Windows Live Hotmail. Check it out! 

Download Messenger. Start an i’m conversation. Support a cause. Join Now! 
-
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
  -- 
sig://boB
http://joyofsetup.com/

Add some color. Personalize your inbox with your favorite colors. Try it! 
_
Create the ultimate e-mail address book. Import your contacts to Windows Live 
Hotmail.
www.windowslive-hotmail.com/learnmore/managemail2.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_impcont_0507-
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] Problem using Action attribute on Custom element

2007-05-16 Thread Kevin Fischer
Actually that was the complete error message:
candle.exe(0,0): Error CNDL0001: Cannot set column 'Action' with a null value 
because this is a required field.
Julie hit upon the solution in another reply.  I needed to add an "Id" 
attribute to the CustomAction Property="QtExecDeferred" listed below.  The 
error message was a little misleading though.
 
Now I'm running into a new issue though.  It can't find wixca.dll.  I didn't 
see it under \program files\windows installer xml\...  
 
Is there a new way to use CAQuietExec in Wix V3?
 
Thanks,Kevin


Date: Tue, 15 May 2007 19:59:48 -0700From: [EMAIL PROTECTED]: [EMAIL 
PROTECTED]: [EMAIL PROTECTED]: Re: [WiX-users] Problem using Action attribute 
on Custom element
Can you post the complete error message? If you want to use WiX v3, you should 
update more often, from the weekly releases site if there aren't "official" 
releases.Kevin Fischer wrote: 


Any thoughts on how to fix this?   Should I not be using V3 of WiX?  I was 
under the impression that I needed to use V3 if I wanted to use the 
"feature-rich" version of Votive. Thanks,Kevin


From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Mon, 14 May 2007 16:08:00 
-0600Subject: [WiX-users] Problem using Action attribute on Custom element

I'm trying to execute a deferred command line in my MSI.  I want it to execute 
only on uninstall prior to a service being stopped/uninstalled. I'm following 
the code snippet I found in the help.  So I have some code like:  
Installed When I try to compile this I get 
the error:  Cannot set column 'Action' with a null value because this is a 
required field.  I'm using WiX version 3, the version released in December 
2006. Any ideas? Thanks,Kevin

Change is good. See what's different about Windows Live Hotmail. Check it out! 

Download Messenger. Start an i’m conversation. Support a cause. Join Now! 
-
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
  -- 
sig://boB
http://joyofsetup.com/
_
Create the ultimate e-mail address book. Import your contacts to Windows Live 
Hotmail.
www.windowslive-hotmail.com/learnmore/managemail2.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_impcont_0507-
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] Problem using Action attribute on Custom element

2007-05-15 Thread Kevin Fischer
Any thoughts on how to fix this?  
 
Should I not be using V3 of WiX?  I was under the impression that I needed to 
use V3 if I wanted to use the "feature-rich" version of Votive.
 
Thanks,
Kevin


From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Mon, 14 May 2007 16:08:00 
-0600Subject: [WiX-users] Problem using Action attribute on Custom element


I'm trying to execute a deferred command line in my MSI.  I want it to execute 
only on uninstall prior to a service being stopped/uninstalled. I'm following 
the code snippet I found in the help.  So I have some code like:  
Installed When I try to compile this I get 
the error:  Cannot set column 'Action' with a null value because this is a 
required field.  I'm using WiX version 3, the version released in December 
2006. Any ideas? Thanks,Kevin

Change is good. See what's different about Windows Live Hotmail. Check it out! 
_
Download Messenger. Start an i’m conversation. Support a cause. Join now.
http://im.live.com/messenger/im/home/?source=TAGWL_MAY07-
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] Problem using Action attribute on Custom element

2007-05-14 Thread Kevin Fischer
I'm trying to execute a deferred command line in my MSI.  I want it to execute 
only on uninstall prior to a service being stopped/uninstalled.
 
I'm following the code snippet I found in the help.  So I have some code like:
 




 

Installed

 
When I try to compile this I get the error:
  Cannot set column 'Action' with a null value because this is a required 
field. 
 
I'm using WiX version 3, the version released in December 2006.
 
Any ideas?
 
Thanks,
Kevin
 
 
 
 
_
Add some color. Personalize your inbox with your favorite colors.
www.windowslive-hotmail.com/learnmore/personalize.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_addcolor_0507-
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] Questions on using XmlConfig/XmlFile elements

2007-05-11 Thread Kevin Fischer
Yes, that resolved my issue.  
 
Thanks,
Kevin



> Date: Fri, 11 May 2007 13:10:11 -0700> From: [EMAIL PROTECTED]> To: 
> wix-users@lists.sourceforge.net> Subject: Re: [WiX-users] Questions on using 
> XmlConfig/XmlFile elements> > > > > Kevin Fischer wrote:> > > > I'm just 
> starting out with using WiX inside of Visual Studio 2005.> > > > I've 
> installed the December 2006 version 3 of WiX, Votive, etc. via the> > MSI 
> installation. I have a very basic .wxs file currently.> > > > I want to use 
> XmlConfig inside of my .wxs file. The documentation says> > it's a child of 
> Component. If I nest an empty  inside of> > Component it 
> complains that it's not a valid child of Component.> > > > The documentation 
> said I need to link to wixca.wixlib, but I didn't find> > that installed as 
> part of WiX. I also saw a mention of Util on the doc> > page, so I added a 
> reference to WixUtilExtension.dll, but that didn't> > change anything.> > > > 
> What's the trick to getting XmlConfig/XmlFile working? Do I need to refer> > 
> to a namespace or something?> > > > Thanks,> > Kevin> > > > > > Wix 3 have 
> different schemas to use depending your need. xmlconfig needs> util schema, 
> which you have to include it by adding > 
> xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"; to your Wix> node 
> inside each wxs file that uses xmlConfig. Also you have to make a> reference 
> to WixUtilExtension by right-clicking references folder on> solution explorer 
> ->add reference ->select WixUtilExtension.dll from the> list. Then, when you 
> use xmlConfig, you have to put  order to recognize as 
> part of the util schema. > > hope this helps! > > Jose> > > -- > View this 
> message in context: 
> http://www.nabble.com/Questions-on-using-XmlConfig-XmlFile-elements-tf3729268.html#a10438632>
>  Sent from the wix-users mailing list archive at Nabble.com.> > > 
> -> 
> 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
_
Download Messenger. Start an i’m conversation. Support a cause. Join now.
http://im.live.com/messenger/im/home/?source=TAGWL_MAY07-
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] Questions on using XmlConfig/XmlFile elements

2007-05-11 Thread Kevin Fischer
I'm just starting out with using WiX inside of Visual Studio 2005.
 
I've installed the December 2006 version 3 of WiX, Votive, etc. via the MSI 
installation.  I have a very basic .wxs file currently.
 
I want to use XmlConfig inside of my .wxs file.  The documentation says it's a 
child of Component.  If I nest an empty  inside of Component it 
complains that it's not a valid child of Component.
 
The documentation said I need to link to wixca.wixlib, but I didn't find that 
installed as part of WiX.  I also saw a mention of Util on the doc page, so I 
added a reference to WixUtilExtension.dll, but that didn't change anything.
 
What's the trick to getting XmlConfig/XmlFile working?  Do I need to refer to a 
namespace or something?
 
Thanks,
Kevin
_
Change is good. See what’s different about Windows Live Hotmail.
www.windowslive-hotmail.com/learnmore/default.html?locale=en-us&ocid=TXT_TAGLM_HMWL_reten_changegood_0507-
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