Re: [WiX-users] Pubca Schema for v3

2007-08-20 Thread Brian Poploskie
That library is not included in the wix-3.0.2925.0-binaries zip file or
installed via the msi.  When will v3.0.3127.0 be available for download?

 

Brian Poploskie



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, August 18, 2007 1:42 PM
To: Brian Poploskie
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Pubca Schema for v3

 

Brian Poploskie wrote: 

Which library do I need to link for that?  None of the names have Pubca
in them.  I'm looking in the wix-3.0.2925.0-binaries zip file.  There's
also nothing in the chm file about that schema.


They changed in v3. The MSMQ stuff is in WixMsmqExtension.dll.
MessageQueue is documented in wix.chm, at least in v3.0.3127.0.




-- 
sig://boB
http://joyofsetup.com/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Pubca Schema for v3

2007-08-17 Thread Brian Poploskie
Bob,

 

Which library do I need to link for that?  None of the names have Pubca
in them.  I'm looking in the wix-3.0.2925.0-binaries zip file.  There's
also nothing in the chm file about that schema.

 

Brian Poploskie



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 17, 2007 10:22 AM
To: Brian Poploskie
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Pubca Schema for v3

 

Brian Poploskie wrote: 

Does the Pubca schema exist in any for for v3?  I'm looking for the
MessageQueue and MQPermission elements.


The assemblies ship in the v3 .zip files. There's an open bug that they
don't ship in the v3 .msi.



-- 
sig://boB
http://joyofsetup.com/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Pubca Schema for v3

2007-08-15 Thread Brian Poploskie
Does the Pubca schema exist in any for for v3?  I'm looking for the
MessageQueue and MQPermission elements.

 

Brian Poploskie

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Adding debug assembly to the GAC

2007-08-08 Thread Brian Poploskie
I've split up my debug and release versions of my installers to make
maintenance and building easier.  I just build and link different wxs
files depending on which version I want to build.  The components have
the same names in the different versions of the files, but the debug
ones have the pdb file as part of the component.  That way the feature
gets put together properly based on the linked file.

 

The problem I'm having is that when I try to add an assembly to the GAC
in the debug version I'm getting the following error:

Error 1935. An error occurred during the installation of assembly
'bridgeSpeak.EventSinks,version="1.5.908.0",culture="neutral",publicKeyT
oken="XXX"'. Please refer to Help and Support for more information.
HRESULT: 0x80131043. assembly interface: IAssemblyCacheItem, function:
Commit, component: {XXX}

 

I've managed to find a few things that say this is due to a hash value
not checking out when it's trying to add the assembly.  I'm guessing
because the component references both files and only the dll is being
added to the GAC.

 

Is there any way around this?  Or does anyone have a suggestion as to a
better technique to manage debug and release versions of the
application?

 

Brian Poploskie

bridgeSpeak 
(248) 588-4477 
Try it out!  Call (248) 588-4477 and say 'demonstration'! 
http://www.bridgeSpeak.com http://www.bridgespeak.com/> 

 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Beginning Question

2007-08-06 Thread Brian Poploskie
It looks like you have some Nant tags in there.  I'm not really sure
what you're trying to do.  Unless you're doing a TFS checkout/checkin as
part of your install I'm confused by what you're trying to do.  You're
describing things that happen at install time, not at build time, in
your WiX files.  To build use MSBuild or Nant or the build tool of your
choice.

I'd suggest starting the tutorial at the beginning and going all the way
through.

The tags you have in there aren't valid children in the WiX Schema.
You're missing the dllentry parameter in your CustomActions required to
do the type 1 custom action and execute a method from a DLL.  The ID in
your Binary is just an identifier.

Brian Poploskie

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10
Sent: Monday, August 06, 2007 3:34 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Beginning Question


Looked at the tutorial and reworked some of the code.  I'm still not
sure
what to do with the Import Project, or if I even need it but here's what
I
have now.












  
  
  
  


 
 

  








>
  
   



-- 
View this message in context:
http://www.nabble.com/Beginning-Question-tf4225049.html#a12022732
Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Beginning Question

2007-08-06 Thread Brian Poploskie
Here's a quick example of how you would use a foo.dll method called
foobar.







http://www.tramontana.co.hu/wix/

That tutorial is a very good place to start messing around with WiX.

http://www.tramontana.co.hu/wix/lesson3.php#3.3

That section in particular deals with custom actions using dlls.

Brian Poploskie

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10
Sent: Monday, August 06, 2007 2:40 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Beginning Question


Well here's what I have right but still not quite sure about several
things. 
What is the wix equivalent of the UsingTask line so it knows to look in
those dll's?

In MSBuild:

  
  
  

So far in Wix:



  
  
  
  
  



  






>
      




Brian Poploskie wrote:
> 
> If I understand the question correctly you want to call some methods
> within assemblies during installation?  If that's the case you'll want
> to take a look at the CustomAction tag for a type 1 custom action.
> 
> To schedule CustomActions after you've created them use the
> InstallExecuteSequence tag and Custom tags underneath that.  The after
> and before params point to a step in the sequence.  So you could have
a
> custom action that came After="InstallFiles" or
Before="StartServices".
> 
> Brian Poploskie
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of
jcafaro10
> Sent: Monday, August 06, 2007 12:06 PM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] Beginning Question
> 
> 
> In our MSBuild proj we have several  lines that link to
some
> assemblies.  I'd like to use some of this functionality in my Wix
> Installer
> but unfortunately, copying all of the  lines didn't work
> because
> UsingTask isn't a child of something or other.  Any way to get this to
> work?
> -- 
> View this message in context:
> http://www.nabble.com/Beginning-Question-tf4225049.html#a12019080
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> 
>

> -
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a
browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
>

-
> This SF.net email is sponsored by: Splunk Inc.
> Still grepping through log files to find problems?  Stop.
> Now Search log events and configuration files using AJAX and a
browser.
> Download your FREE copy of Splunk now >>  http://get.splunk.com/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context:
http://www.nabble.com/Beginning-Question-tf4225049.html#a12021902
Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Beginning Question

2007-08-06 Thread Brian Poploskie
If I understand the question correctly you want to call some methods
within assemblies during installation?  If that's the case you'll want
to take a look at the CustomAction tag for a type 1 custom action.

To schedule CustomActions after you've created them use the
InstallExecuteSequence tag and Custom tags underneath that.  The after
and before params point to a step in the sequence.  So you could have a
custom action that came After="InstallFiles" or Before="StartServices".

Brian Poploskie
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of jcafaro10
Sent: Monday, August 06, 2007 12:06 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Beginning Question


In our MSBuild proj we have several  lines that link to some
assemblies.  I'd like to use some of this functionality in my Wix
Installer
but unfortunately, copying all of the  lines didn't work
because
UsingTask isn't a child of something or other.  Any way to get this to
work?
-- 
View this message in context:
http://www.nabble.com/Beginning-Question-tf4225049.html#a12019080
Sent from the wix-users mailing list archive at Nabble.com.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] User Creation Problem

2007-08-03 Thread Brian Poploskie
I'm trying to create a user during my installation.  The problem I'm
having is if the user exists the installation fails, this is despite
having the following xml:

 









 

The user exists and the installation is failing, which seems like it
should not happen with the FailIfExists param set to no.  Is it always
going to fail if a user exists that it's trying to create?  This is
using WiX 3.0.2925.0.

 

Brian Poploskie

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Error while building

2007-08-02 Thread Brian Poploskie
I'm guessing you're missing the -loc flag before that file on your
command line if you're building via command line.

 

So: light -out test.msi blah.wixobj -loc "C:\Program Files\Windows
Installer XML\bin\wixui_en-us.wxl"

Instead of: So light -out test.msi blah.wixobj "C:\Program Files\Windows
Installer XML\bin\wixui_en-us.wxl"

 

 

Brian Poploskie



From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Chandan
Koushik
Sent: Thursday, August 02, 2007 9:31 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Error while building

 

Hi All,

I am using Wix 2.0.5325.0 version and I am getting the
following error when I am  trying to build the project using vs2005
environment.

 

Error   1  Invalid output file, detail: Error while parsing: The
xml document element was expected to be tableDefinitions, but was
actually WixLocalization.   C:\Program Files\Windows Installer
XML\bin\wixui_en-us.wxl  

 

Can anyone please help me out...

 

Regards,

Chandan Koushik

 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] File Paths and Fragments

2007-08-02 Thread Brian Poploskie
My sanity has been restored, I figured it out.

 

The problem was I had some features set to Level="0" and was doing
debug/release checks to figure out what feature to use and setting the
level appropriately.  Well when I broke out the project into fragments I
moved debug/release into different fragments as I was getting yelled at
because it looked like I was trying to install the same thing twice,
even though only one would be installed, and from two different sources
(blah.dll from release or debug).  I would just link the debug or
release version of the fragments when I built the installer.

 

The problem was I forgot to reset the levels on the features to
accommodate this.

 

The other problem is it was causing custom actions to fail so the
install never completed so I never went looking for the dlls, and when
it was built without compression the files were in the directory tree,
just not installed.

 

Thanks for trying to help!

 

Brian Poploskie



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 01, 2007 11:58 PM
To: Brian Poploskie
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] File Paths and Fragments

 

Brian Poploskie wrote: 

I switched to WiX 3.0.2925.0 and still had the same problem.  Strangely
enough I broke it down to a really small test case and it worked fine.
This was a direct copy and paste of the custom actions/files/and
scheduling.  They're both in approximate the same place in the install
sequence 4001 to 4016, after Install Files, so well within the range
where the references will still be valid.  I'm not getting an invalid
foreign key reference so it acknowledges those files are there.


Can you post a fragment? Nothing's coming to mind so far...




-- 
sig://boB
http://joyofsetup.com/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] File Paths and Fragments

2007-08-01 Thread Brian Poploskie
I switched to WiX 3.0.2925.0 and still had the same problem.  Strangely
enough I broke it down to a really small test case and it worked fine.
This was a direct copy and paste of the custom actions/files/and
scheduling.  They're both in approximate the same place in the install
sequence 4001 to 4016, after Install Files, so well within the range
where the references will still be valid.  I'm not getting an invalid
foreign key reference so it acknowledges those files are there.

 

Other custom actions are also having their references resolve properly,
which just confuses me more.

 

Brian Poploskie



From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 01, 2007 1:37 AM
To: Brian Poploskie
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] File Paths and Fragments

 

Brian Poploskie wrote: 

I'm using some file keys in custom actions, for example [#MyFile].  This
was working fine until I broke the core wxs file up into multiple files
containing fragments for easier maintenance.  Since I've done this the
file references don't seem to be evaluating to anything.  I get empty
strings in the logs when I try to do the install.

 

Is it not possible to use formatted strings to get the path of file
objects when the files are in a fragment?


Yes, it should work/does work for me. Can you narrow it down to a simple
case?



-- 
sig://boB
http://joyofsetup.com/
-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] File Paths and Fragments

2007-07-31 Thread Brian Poploskie
I'm using 2.0.  It's hard enough convincing people around here to use
new tech, let alone pre-release tech.

 

They are deferred but all scheduled before InstallFinalize.  They're all
on the same schedule as they were before I moved everything to fragments
and they worked fine before.

 

Brian Poploskie



From: John Hall [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 31, 2007 10:01 AM
To: Brian Poploskie
Cc: wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] File Paths and Fragments

 

 

I'm using some file keys in custom actions, for example
[#MyFile].  This was working fine until I broke the core wxs file up
into multiple files containing fragments for easier maintenance.  Since
I've done this the file references don't seem to be evaluating to
anything.  I get empty strings in the logs when I try to do the install.

 

Is it not possible to use formatted strings to get the path of
file objects when the files are in a fragment?

 

Brian,

 

What version of WiX are you using? I am using version 3, and file keys
work for me with components in separate fragments. Is it possible you're
using deferred custom actions, in which those properties are no longer
available? See http://msdn2.microsoft.com/EN-US/library/aa370543.aspxfor
more information on what is available during a deferred CA.l

 

Cheers,

John

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] File Paths and Fragments

2007-07-31 Thread Brian Poploskie
I'm using some file keys in custom actions, for example [#MyFile].  This
was working fine until I broke the core wxs file up into multiple files
containing fragments for easier maintenance.  Since I've done this the
file references don't seem to be evaluating to anything.  I get empty
strings in the logs when I try to do the install.

 

Is it not possible to use formatted strings to get the path of file
objects when the files are in a fragment?

 

Brian Poploskie

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Registry Permissions

2007-07-24 Thread Brian Poploskie
I'm attempting to add permissions to an existing registry key during
installation.  The problem is what happens when I try that is the
original key is overwritten by a new key.  The new key has the correct
permissions but this causes a lot of problems.  The tag I'm using is:

 











 

What I'd like to do is just append the permission to the access list and
keep the existing key.  Is this possible?  

 

Brian Poploskie

bridgeSpeak 
(248) 588-4477 
Try it out!  Call (248) 588-4477 and say 'demonstration'! 
http://www.bridgeSpeak.com http://www.bridgespeak.com/> 

 

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users