Re: [WiX-users] creating database problem

2012-09-18 Thread Katherine Moss
- From: Christopher Painter [mailto:chr...@iswix.com] Sent: Monday, September 17, 2012 10:47 PM To: General discussion for Windows Installer XML toolset.; General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem Actually I love merge modules

Re: [WiX-users] creating database problem

2012-09-18 Thread Katherine Moss
Mensching [mailto:r...@robmensching.com] Sent: Monday, September 17, 2012 4:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem Yeah, that's why we created .wixlibs. On Mon, Sep 17, 2012 at 1:09 PM, Steven Ogilvie steven.ogil

Re: [WiX-users] creating database problem

2012-09-18 Thread StevenOgilvie
I am using WIX 3.6 and VS2010 I have 4 merge modules that are services... I have just created 2 wixlibs that I would like to share with each merge module, how would I add them to the merge module? Steve -- View this message in context:

Re: [WiX-users] creating database problem

2012-09-18 Thread StevenOgilvie
okay I figured out how to add the wixlib, however the files are not being installed :( in the wixlib: ?xml version=1.0 encoding=UTF-8? Wix xmlns=http://schemas.microsoft.com/wix/2006/wi; ?include $(var.SolutionDir)Setup\Includes\Variables.wxi ? Fragment Directory Id=TARGETDIR

Re: [WiX-users] creating database problem

2012-09-18 Thread John H Bergman (XPedient)
In the project page, you need to select bind files to get them included inside the WixLib. -Original Message- From: StevenOgilvie [mailto:sogil...@msn.com] Sent: Tuesday, September 18, 2012 9:10 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] creating database problem

Re: [WiX-users] creating database problem

2012-09-18 Thread Rob Mensching
, September 18, 2012 1:17 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem In WiX, yes. http://www.robmensching.com/blog/posts/2008/10/10/What-are-.wixlibs-and-why-would-you-use-them On Mon, Sep 17, 2012 at 4:29 PM, Katherine Moss

Re: [WiX-users] creating database problem

2012-09-18 Thread Steven Ogilvie
for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem In the project page, you need to select bind files to get them included inside the WixLib. -Original Message- From: StevenOgilvie [mailto:sogil...@msn.com] Sent: Tuesday, September 18, 2012 9:10 AM To: wix-users

Re: [WiX-users] creating database problem

2012-09-18 Thread Rob Mensching
I would remove TARGETDIR from the Fragment and change MergeRedirectFolder to a DirectoryRef. Might even call MergeRedirectFolder something more like ThePurposeOfThisFragmentFolder. That ends up being a reference to a folder that the .wixlib will need the parent project (MSI or Merge Module) to

Re: [WiX-users] creating database problem

2012-09-18 Thread John H Bergman (XPedient)
18, 2012 9:33 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem Sorry I don't understand what you mean? What project page? I looked under the project properties but there is nothing about binding... Steve -Original Message

Re: [WiX-users] creating database problem

2012-09-18 Thread Steven Ogilvie
/ /Component Etc... Thanks to all!! -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: September-18-12 10:34 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem I would remove TARGETDIR from

[WiX-users] creating database problem

2012-09-17 Thread StevenOgilvie
Hi, I have 3 sql scripts I need to run on our database (creating, overwrite) I have created a merge module that installs the scripts down... I create a user account: util:User Id=SQLUser Name=[DATABASE_USERNAME] Password=[DATABASE_PASSWORD] / for SQL authentication (if required) I create two

Re: [WiX-users] creating database problem

2012-09-17 Thread Hoover, Jacob
] creating database problem Hi, I have 3 sql scripts I need to run on our database (creating, overwrite) I have created a merge module that installs the scripts down... I create a user account: util:User Id=SQLUser Name=[DATABASE_USERNAME] Password=[DATABASE_PASSWORD] / for SQL authentication

Re: [WiX-users] creating database problem

2012-09-17 Thread StevenOgilvie
oops the condition got wiped out: here it is for windows authentication: Condition/Condition here it is for SQL Server authentication: Condition/Condition -- View this message in context:

Re: [WiX-users] creating database problem

2012-09-17 Thread StevenOgilvie
crap the nabble post/reply is killing the condition, lets see what happens if I put spaces: C o n d i t i o n ! [ C D A T A [ D A T A B A S E _ W I N D O W S A U T H E N T I C A T I O N = 1 ] ] / C o n d i t i o n for SQL server it would be =0 Steve -- View this message in context:

Re: [WiX-users] creating database problem

2012-09-17 Thread Hoover, Jacob
It's also badly mangling the log file. What lines are in the log file around the two components? Jacob -Original Message- From: StevenOgilvie [mailto:sogil...@msn.com] Sent: Monday, September 17, 2012 2:02 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] creating

Re: [WiX-users] creating database problem

2012-09-17 Thread Steven Ogilvie
for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem It's also badly mangling the log file. What lines are in the log file around the two components? Jacob -Original Message- From: StevenOgilvie [mailto:sogil...@msn.com] Sent: Monday, September 17, 2012

Re: [WiX-users] creating database problem

2012-09-17 Thread Hoover, Jacob
is actually supposed to be installed? -Original Message- From: Steven Ogilvie [mailto:steven.ogil...@titus.com] Sent: Monday, September 17, 2012 2:15 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem MSI (s) (F4:9C) [15:07:30:065

Re: [WiX-users] creating database problem

2012-09-17 Thread Steven Ogilvie
: Re: [WiX-users] creating database problem Action being null (on the component), it's doing nothing http://msdn.microsoft.com/en-us/library/windows/desktop/aa367858(v=vs.85).aspx . What and where is the value being assigned to your DATABASE_WINDOWSAUTHENTICATION property? Also, I assume

Re: [WiX-users] creating database problem

2012-09-17 Thread Rob Mensching
[mailto:jacob.hoo...@greenheck.com] Sent: September-17-12 3:34 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem Action being null (on the component), it's doing nothing http://msdn.microsoft.com/en-us/library/windows/desktop/aa367858(v=vs

Re: [WiX-users] creating database problem

2012-09-17 Thread Katherine Moss
Are those meant to take the place of merge modules? -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Monday, September 17, 2012 4:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem Yeah, that's

Re: [WiX-users] creating database problem

2012-09-17 Thread Christopher Painter
...@greenheck.com Sent: Monday, September 17, 2012 2:38 PM To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Subject: Re: [WiX-users] creating database problem Action being null (on the component), it's doing nothing http://msdn.microsoft.com/en-us/library

Re: [WiX-users] creating database problem

2012-09-17 Thread Rob Mensching
[mailto:r...@robmensching.com] Sent: Monday, September 17, 2012 4:26 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] creating database problem Yeah, that's why we created .wixlibs. On Mon, Sep 17, 2012 at 1:09 PM, Steven Ogilvie steven.ogil...@titus.com wrote