Re: [WiX-users] Multiple SelectionTree in one Dialog Box

2006-08-07 Thread Calin Iaru
Hi Bob,

I was thinking that maybe I can group under Feature/SelectionTree 
under a Fragment or some parent element that I don't know about. The 
thing is that more feature trees mean more reset buttons - and so it 
could lead to a hidden tree containing just one feature which is 
selected by publishing SelectionNoItems events. If that button is a 
checkbox, then that would be a quick workaround to SdFeatureTree. 
Otherwise, back to square 1 where one must write a DLL which contains 
these checkboxes and the inherent more opportunities to fail. It's not 
high priority though.

Best regards,
Calin

Bob Arnson wrote:
> Calin Iaru wrote:
>>
>> Is there a way to show multiple SelectionTree controls in 
>> one dialog box? Each of them should have different features.
>>
> Selection-tree controls always show the same feature tree.
> -- 
> sig://boB
> http://bobs.org


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] cab files getting corrupted

2006-08-07 Thread Simon Porter
I'm not sure what the error is. Do you mean it should be something like this
instead?





Simon Porter
Trainee IT Engineer
Heber Ltd

From: Bob Arnson [mailto:[EMAIL PROTECTED] 
Sent: 04 August 2006 14:11
To: Simon Porter
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] cab files getting corrupted

Simon Porter wrote: 



  
That creates three files in your setup, all of which contain the contents of
settings.cab.

-- 
sig://boB
http://bobs.org


Heber Ltd.
Registered Office: Belvedere Mill, Chalford, Stroud, Glos, GL6 8NT, England.
Registered England: 1744505

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to show "FilesInUse" dialog _always_ ?

2006-08-07 Thread Rob Hamflett
The alternative is a Custom Action which scans the process list for any known 
entries and prompts 
the user to stop them.

Rob

Bob Arnson wrote:
> Alexander Biryukov wrote:
>> Unfortunately, ServiceControl with Stop='install' always stops service, it  
>> is not dependent on that updating service or not. 
> True, but better to stop more services than reboot.
>> Also it does not solve the problem with locked non executable files.
>>   
> MSI doesn't support that -- the FilesInUse dialog is geared toward users 
> who can close their apps, not arbitrary executables.
> 
> WiX v3 includes a CloseApplications custom action and you can use to 
> shut down arbitrary executables. I'm not sure how well it works with 
> services, however, so you might want to experiment.
> 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] rfc: pivots preprocessor extension

2006-08-07 Thread Rob Hamflett
That sounds like a great idea.  I've been through a few variations of how to 
work round this 
problem, all of which were/are pretty nasty.  Would this be v3 only or v2 as 
well?

Rob

Derek Cicerone wrote:
> There has been a lot of demand for a way to easily author simple 
> variations on a single component template very quickly.  The need for 
> such a solution is evident if you’ve ever wanted to create a single 
> component in multiple language versions or for multiple platforms and 
> found yourself try to get it working in the preprocessor or manually 
> authoring all the variations.  Here is a proposal for how I believe this 
> could be done with a preprocessor extension which I’m currently calling 
> WixPivotsExtension™ J
> 
>  
> 
> Desired result:
> 
> 
> 
> 
> 
>  Guid="*{22B5A745-4784-407c-9D76-DAA07495993C}*" Win64=”*no*”>
> 
>  Source="SourceDir\*x86\en_us*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x86\en_us*\test2.txt" />
> 
>  Name="*en_us*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>  Guid="*{6ABEA558-276D-4aa1-AADC-D6D415431154}*" Win64=”*no*”>
> 
>  Source="SourceDir\*x86\he_il*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x86\he_il*\test2.txt" />
> 
>  Name="*he_il*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>  Guid="*{4BBD4239-19CC-4792-8738-D196929367D3}*" Win64=”*yes*”>
> 
>  Source="SourceDir\*x64\en_us*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x64\en_us*\test2.txt" />
> 
>  Name="*en_us*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>  Guid="*{CE2D5AAC-CD05-4fee-B310-9522E6F6615F}*" Win64=”*yes*”>
> 
>  Source="SourceDir\*x64\he_il*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x64\he_il*\test2.txt" />
> 
>  Name="*he_il*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
>  
> 
> Here’s what the template might look like (MyComponent.wxs):
> 
> 
> 
> http://schemas.microsoft.com/wix/2006/wi";>
> 
>  
> 
> **
> 
> 
> 
> 
> 
>  Guid="*$(var.Pivot.Guid)*" Win64="*$(var.Pivot.Win64)*">
> 
>  Name="test.txt" Source="*$(var.Pivot.FilePrefix)*\test.txt" KeyPath="yes" />
> 
>  Name="test2.txt" Source="*$(var.Pivot.FilePrefix)*\test2.txt" />
> 
>  Name="*$(var.Pivot.Culture)*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
> **
> 
>  
> 
> 
> 
>  
> 
> And here’s how the values are specified (MyComponentPivots.xml):
> 
> 
> 
>  FilePrefix="SourceDir\$(var.Pivot.Platform)\$(var.Pivot.Culture)">
> 
> 
> 
>  Guid="{22B5A745-4784-407c-9D76-DAA07495993C}" />
> 
>  Guid="{6ABEA558-276D-4aa1-AADC-D6D415431154}" />
> 
> 
> 
> 
> 
>  Guid="{4BBD4239-19CC-4792-8738-D196929367D3}" />
> 
>  Guid="{CE2D5AAC-CD05-4fee-B310-9522E6F6615F}" />
> 
> 
> 
> 
> 
>  
> 
>  
> 
> So basically, there would be a preprocessor extension that runs before 
> the normal WiX preprocessor and expands out the foreach statement into 
> different views on the component using the various pivots from the xml file.
> 
>  
> 
> Here’s the details of how it would work:
> 
>1. Find  statements and their corresponding pivots.xml files.
>2. For each leaf node in the pivots.xml file, create a view of the
>   Fragment inside the .  (In the example above, there are
>   4 leaf nodes and thus 4 views on the component).
>3. Traverse the xml from the document element down to the leaf node
>   turning all the attributes encountered along the way into
>   preprocessor variables (those which are set multiple times will be
>   overridden by the children – so inheritance is possible).
>4. All variables are set with “Pivot.” In front of them to avoid
>   collisions with variables that may be specified on the candle
>   command line and via  statements.  (I’m flexible on
>   whether this is important or not – we could also just set the
>   variables directly which would mean less typing in the WiX source
>   file to use the variables).
>5. Run the normal WiX preprocessor over the now expanded authoring,
>   thus resulting in the desired authoring above.
> 
>  
> 
> Note that this system is completely flexible in terms of the naming 
> conventions for the variables which are set – you can use whatever names 
> you like.  I’ve used “Platform” and “Culture” but you could use 
> “Processor” and “Language” or whatever else is appro

Re: [WiX-users] rfc: pivots preprocessor extension

2006-08-07 Thread Derek Cicerone
This would definitely be a 3.0-only feature.  It will require modifications
to the WiX preprocessor.  Currently the preprocessor only allows plugins to
run after the preprocessor.  In this case, we need the extension to run
before the preprocessor.  However, since the preprocessor is based on
XmlTextReader (not XmlDocument), doing this processing before the normal
preprocessor would require a bit of a hack (ugly and a perf hit).  So I'll
probably need to re-write the preprocessor a little bit to make this work
properly.  I fear that code - it's the only thing that hasn't been rewritten
in WiX 3.0 so I guess it was due.

I'd love to get something like this working for 2.0 but the preprocessor
unfortunately just doesn't support this type of behavior and the code is
notorious for being extremely fragile.  I wouldn't dare touch it in 2.0.

Derek

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Rob Hamflett
Sent: Monday, August 07, 2006 1:06 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] rfc: pivots preprocessor extension

That sounds like a great idea.  I've been through a few variations of how to
work round this 
problem, all of which were/are pretty nasty.  Would this be v3 only or v2 as
well?

Rob

Derek Cicerone wrote:
> There has been a lot of demand for a way to easily author simple 
> variations on a single component template very quickly.  The need for 
> such a solution is evident if you've ever wanted to create a single 
> component in multiple language versions or for multiple platforms and 
> found yourself try to get it working in the preprocessor or manually 
> authoring all the variations.  Here is a proposal for how I believe this 
> could be done with a preprocessor extension which I'm currently calling 
> WixPivotsExtensionT J
> 
>  
> 
> Desired result:
> 
> 
> 
> 
> 
>  Guid="*{22B5A745-4784-407c-9D76-DAA07495993C}*" Win64="*no*">
> 
>  Source="SourceDir\*x86\en_us*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x86\en_us*\test2.txt" />
> 
>  Name="*en_us*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>  Guid="*{6ABEA558-276D-4aa1-AADC-D6D415431154}*" Win64="*no*">
> 
>  Source="SourceDir\*x86\he_il*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x86\he_il*\test2.txt" />
> 
>  Name="*he_il*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>  Guid="*{4BBD4239-19CC-4792-8738-D196929367D3}*" Win64="*yes*">
> 
>  Source="SourceDir\*x64\en_us*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x64\en_us*\test2.txt" />
> 
>  Name="*en_us*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
> 
> 
> 
> 
>  Guid="*{CE2D5AAC-CD05-4fee-B310-9522E6F6615F}*" Win64="*yes*">
> 
>  Source="SourceDir\*x64\he_il*\test.txt" KeyPath="yes" />
> 
>  Source="SourceDir\*x64\he_il*\test2.txt" />
> 
>  Name="*he_il*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
>  
> 
>  
> 
> Here's what the template might look like (MyComponent.wxs):
> 
> 
> 
> http://schemas.microsoft.com/wix/2006/wi";>
> 
>  
> 
> **
> 
> 
> 
> 
> 
>  Guid="*$(var.Pivot.Guid)*" Win64="*$(var.Pivot.Win64)*">
> 
>  Name="test.txt" Source="*$(var.Pivot.FilePrefix)*\test.txt" KeyPath="yes"
/>
> 
>  Name="test2.txt" Source="*$(var.Pivot.FilePrefix)*\test2.txt" />
> 
>  Name="*$(var.Pivot.Culture)*" Value="1" Type="integer" />
> 
> 
> 
> 
> 
> 
> 
> **
> 
>  
> 
> 
> 
>  
> 
> And here's how the values are specified (MyComponentPivots.xml):
> 
> 
> 
>  FilePrefix="SourceDir\$(var.Pivot.Platform)\$(var.Pivot.Culture)">
> 
> 
> 
>  Guid="{22B5A745-4784-407c-9D76-DAA07495993C}" />
> 
>  Guid="{6ABEA558-276D-4aa1-AADC-D6D415431154}" />
> 
> 
> 
> 
> 
>  Guid="{4BBD4239-19CC-4792-8738-D196929367D3}" />
> 
>  Guid="{CE2D5AAC-CD05-4fee-B310-9522E6F6615F}" />
> 
> 
> 
> 
> 
>  
> 
>  
> 
> So basically, there would be a preprocessor extension that runs before 
> the normal WiX preprocessor and expands out the foreach statement into 
> different views on the component using the various pivots from the xml
file.
> 
>  
> 
> Here's the details of how it would work:
> 
>1. Find  statements and their corresponding pivots.xml
files.
>2. For each leaf node in the pivots.xml file, create a view of the
>   Fragment inside the .  (In the example above, there are
>   4 leaf nodes and thus 4 

Re: [WiX-users] How to show "FilesInUse" dialog _always_ ?

2006-08-07 Thread Alexander Biryukov

It's good, but how to catch "file in use" moment (before any file copy  
operation) to show dialog  ?

Maybe somehow that :





MyFileInUseCheck is custom action, that check file and show FilesInUse  
dialog, when file locked.

It will work ?

--
Alexander Biryukov

On Mon, 07 Aug 2006 00:21:58 +0400, Phil Wilson <[EMAIL PROTECTED]>  
wrote:

> The FilesInUse dialog can be shown from a custom action with
> MsiProcessMessage (...INSTALLMESSAGE_FILESINUSE...), this vbscript shows  
> the
> general idea:
>
> option explicit
> dim inst, rec, res
> const tryagain=4
> const DoExit = 2
> const Docontinue =1
> set inst = CreateObject("WindowsInstaller.Installer")
> set rec=inst.CreateRecord (3)
> rec.StringData(1) = "myfile.exe"
> rec.StringData(2) = "Please use Task Manager to terminate the program"
>
> Do
> res = Session.Message (&H0500, rec)
> ' check for the program terminated
>
> loop until res <> tryagain
>
>
> Phil Wilson
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Alexander
> Biryukov
> Sent: Friday, August 04, 2006 1:19 PM
> To: wix-users@lists.sourceforge.net
> Subject: [WiX-users] How to show "FilesInUse" dialog _always_ ?
>
> Greetings all,
>
> We need for doing minor upgrades of our software product on servers,  
> that is
> _not acceptably_ to reboot.
> Some of upgrades affect on running windows services, but Windows  
> Installer
> does not show FilesInUse dialog for this, instead show "Please reboot" at
> final of installation. In this situation user not be aware that
> services/files in use and will be updated, for manually prevent reboot.
>
> The Windows Installer documentation says :
> -
> If you expect the installer to display a FilesInUseDialog, but it does  
> not,
> this may be due to one of the following reasons:
> - The files in use are not executables.
> - The installer is not actually trying to install those files.
> - The process holding those files is the process invoking the  
> installation.
> - The process holding those files is one that does not have a window  
> with a
> title associated with it.
> -
>
> Is exist a way to display FilesInUse dialog (or some custom dialog with  
> file
> names) always, for _all_ "files in use" which should be updated ?
>
> --
> Alexander Biryukov
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT Join  
> SourceForge.net's
> Techsay panel and you'll get the chance to share your opinions on IT &
> business topics through brief surveys -- and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> -
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share  
> your
> opinions on IT & business topics through brief surveys -- and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Calling custom actions in Merge Modules

2006-08-07 Thread Stuart Cullen








Thanks Derek, I’ve worked around the problem now.

 



Stuart Cullen

Nonlinear Dynamics Ltd

Tel: +44 (0)191 230 2121

Fax: +44 (0)191 230 2131

 

www.nonlinear.com











From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: 03 August 2006 18:06
To: Stuart Cullen;
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Calling
custom actions in Merge Modules



 

You should not be referencing a custom
action from a merge module in a main installation.  Who wrote the custom
action?  If its yours then you should use wixlib files instead of merge
modules.  If its not yours, whoever did write it should have made it a
table-driven custom action.

 

Derek

 









From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stuart Cullen
Sent: Thursday, August 03, 2006
7:46 AM
To:
wix-users@lists.sourceforge.net
Subject: [WiX-users] Calling
custom actions in Merge Modules



 

Hi

 

I
have a merge module that I created including all the files for a product,
including the exe.

 

I now
want to launch that exe at the end of my main wix project. I have tried using a
custom action which was created in the merge module as below

 

(NOT Installed) AND
(LAUNCHPRODUCT = 1)Publish>

 

But
light complains about not knowing what this reference is. I have added this by
hand using Orca and it works so how can I get Wix to understand it.

 

Cheers

 

Stuart
Cullen

 


Confidentiality: This communication contains information which is confidential.
It is for the exclusive use of the intended recipient(s).
__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__





Confidentiality: This communication contains information which is confidential. It is for the exclusive use of the intended recipient(s).
__
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] rfc: Package element changes

2006-08-07 Thread Richard Willis
Derek Cicerone wrote:

>That's an idea, but then we'd be blocking off guids that people can never
>use.  That's a good idea though.  Perhaps we could just interpret the
>"PUT-GUID-HERE" values as a null guid or something when a special hidden
>candle option is specified.
>  
>
Aren't Guids supposed to be globally unique though, and so they couldn't 
be generated again.

>Another idea might be to have a special process that runs over unit test
>files before they are sent to the compiler to fill in guids.
>
>  
>
This might be a better way, as the unit test authors wouldn't need to 
remember to use the special guids. They would still need reminding to 
not put an actual guid in the test xml in case someone copies it - 
perhaps have a test to check if they do have guids in and fail if they do.

Richard



-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Multiple SelectionTree in one Dialog Box

2006-08-07 Thread Bob Arnson
Calin Iaru wrote:
> I was thinking that maybe I can group under Feature/SelectionTree 
> under a Fragment or some parent element that I don't know about. The 
> thing is that more feature trees mean more reset buttons - and so it 
> could lead to a hidden tree containing just one feature which is 
> selected by publishing SelectionNoItems events. If that button is a 
> checkbox, then that would be a quick workaround to SdFeatureTree. 
> Otherwise, back to square 1 where one must write a DLL which contains 
> these checkboxes and the inherent more opportunities to fail. It's not 
> high priority though.
>   
The selection tree works off the Feature table in the .msi. You can 
usually group components into features and subfeatures to create the 
selectability you want. But the UI is going to be limited by what the 
control can do.

-- 
sig://boB
http://bobs.org


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Multi-language msi

2006-08-07 Thread John Lemire
Yes the hypocrisy of which is not lost on us as Microsoft uses this 
exceptionally handy feature itself (in the windows installer installer 
instmsi.exe no less) while discouraging it and leaving it undocumented...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DEÁK JAHN, Gábor
Sent: Sunday, August 06, 2006 1:28 PM
To: WiX-users
Subject: [WiX-users] Multi-language msi

On Sun, 6 Aug 2006 11:32:20 -0700, Derek Cicerone wrote:

Derek,

> It's not officially supported by the MSI team (they
> discourage people from using it).  I'm not sure why though.

Actually, as far as I know, it's naming the transforms according to the 
codepage numbers (what would make the selection of the language automatic) is 
discouraged, not the use of the transforms themselves like this:

msiexec /i SampleMulti.msi TRANSFORMS="fr-fr.mst"

Bye,
   Gábor

---
DEÁK JAHN, Gábor -- Budapest, Hungary
E-mail: [EMAIL PROTECTED]



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] FW: Re: MessageQueue PubCA

2006-08-07 Thread david adams
Kudos to Fredrik.  Once I get the -ext command line parameter fixed, MSI 
successfully built & installed correctly to the server.

Thanks to all for the support & answers.

David Adams
MSN MessengerID: [EMAIL PROTECTED]





>From: "Derek Cicerone" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: "'david adams'" 
><[EMAIL PROTECTED]>,
>Subject: Re: [WiX-users] FW: Re:  MessageQueue PubCA
>Date: Fri, 4 Aug 2006 14:24:45 -0700
>MIME-Version: 1.0
>Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by 
>bay0-mc5-f11.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Fri, 4 
>Aug 2006 14:24:55 -0700
>Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by 
>sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 7B88A1274A; Fri,  4 Aug 
>2006 14:24:54 -0700 (PDT)
>Received: from sc8-sf-mx1-b.sourceforge.net 
>([10.3.1.91]helo=mail.sourceforge.net)by sc8-sf-list1-new.sourceforge.net 
>with esmtp (Exim 4.43)id 1G97A4-0003fd-1mfor 
>wix-users@lists.sourceforge.net; Fri, 04 Aug 2006 14:24:52 -0700
>Received: from [192.197.157.82] (helo=winisp-fe1.winisp.net)by 
>mail.sourceforge.net with esmtp (Exim 4.44) id 1G97A3-0008VI-EGfor 
>wix-users@lists.sourceforge.net; Fri, 04 Aug 2006 14:24:52 -0700
>Received: from derekclap ([131.107.0.89]) by winisp-fe1.winisp.net over 
>TLSsecured channel with Microsoft SMTPSVC(6.0.3790.1830); Fri, 4 Aug 2006 
>14:24:45 -0700
>X-Message-Info: LsUYwwHHNt1IR7Yg1KskC1HZg8CSwiHh+f8sQ5dNDSo=
>X-Mailer: Microsoft Office Outlook 11
>Thread-Index: Aca4Cf+nq3a3u0ggRkSex4qpgT31nAAAiz4Q
>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2922
>X-OriginalArrivalTime: 04 Aug 2006 21:24:45.0550 
>(UTC)FILETIME=[684AF8E0:01C6B80C]
>X-Spam-Score: 0.0 (/)
>X-Spam-Report: Spam Filtering performed by sourceforge.net.See 
>http://spamassassin.org/tag/ for more details.Report problems 
>tohttp://sf.net/tracker/?func=add&group_id=1&atid=21
>X-BeenThere: wix-users@lists.sourceforge.net
>X-Mailman-Version: 2.1.8
>Precedence: list
>List-Id: "General discussion for Windows Installer XML 
>toolset."
>List-Unsubscribe: 
>,PROTECTED]>
>List-Archive: 
>
>List-Post: 
>List-Help: 
>List-Subscribe: 
>,PROTECTED]>
>Errors-To: [EMAIL PROTECTED]
>Return-Path: [EMAIL PROTECTED]
>
>Justin or Bob would have to answer that question - I'm not sure what Votive
>installs these days :)
>
>-Original Message-
>From: [EMAIL PROTECTED]
>[mailto:[EMAIL PROTECTED] On Behalf Of david adams
>Sent: Friday, August 04, 2006 2:07 PM
>To: wix-users@lists.sourceforge.net
>Subject: [WiX-users] FW: Re: MessageQueue PubCA
>
>I downloaded the 2.0.4421.0 binaries and retrieved the pubca.wixlib &
>pcaext.dll files.
>
>The install generated the MSI.
>
>Thanks Derek.  BTW.  Should the wixlib & dll have been installed with the
>Votive install?
>
>David Adams
>MSN MessengerID: [EMAIL PROTECTED]
>
> >From: "david adams" <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED], wix-users@lists.sourceforge.net
> >Subject: Re: [WiX-users] MessageQueue PubCA
> >Date: Fri, 04 Aug 2006 20:42:59 +
> >MIME-Version: 1.0
> >X-Originating-IP: [12.6.40.2]
> >X-Originating-Email: [EMAIL PROTECTED]
> >X-Sender: [EMAIL PROTECTED]
> >Received: from lists-outbound.sourceforge.net ([66.35.250.225]) by
> >bay0-mc6-f7.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Fri, 
>4
> >Aug 2006 13:43:12 -0700
> >Received: from sc8-sf-list1-new.sourceforge.net (unknown [10.3.1.93])by
> >sc8-sf-spam2.sourceforge.net (Postfix) with ESMTPid 2B8AC12F35; Fri,  4 
>Aug
>
> >2006 13:43:12 -0700 (PDT)
> >Received: from sc8-sf-mx2-b.sourceforge.net
> >([10.3.1.92]helo=mail.sourceforge.net)by sc8-sf-list1-new.sourceforge.net
> >with esmtp (Exim 4.43)id 1G96Vh-Fe-OYfor
> >wix-users@lists.sourceforge.net; Fri, 04 Aug 2006 13:43:09 -0700
> >Received: from bay0-omc1-s8.bay0.hotmail.com ([65.54.246.80])by
> >mail.sourceforge.net with esmtp (Exim 4.44) id 1G96Vh-0008Af-9Efor
> >wix-users@lists.sourceforge.net; Fri, 04 Aug 2006 13:43:09 -0700
> >Received: from hotmail.com ([64.4.61.24]) by
> >bay0-omc1-s8.bay0.hotmail.comwith Microsoft SMTPSVC(6.0.3790.1830); Fri, 
>4
> >Aug 2006 13:43:04 -0700
> >Received: from mail pickup service by hotmail.com with Microsoft
> >SMTPSVC;Fri, 4 Aug 2006 13:43:03 -0700
> >Received: from 64.4.61.200 by by102fd.bay102.hotmail.msn.com with 
>HTTP;Fri,
>
> >04 Aug 2006 20:42:59 GMT
> >X-Message-Info: txF49lGdW41un/J1DbPfyfIVh5GhNQ0qo3EKQvRVlr8=
> >X-OriginalArrivalTime: 04 Aug 2006 20:43:03.0602
> >(UTC)FILETIME=[95040120:01C6B806]
> >X-Spam-Score: 0.5 (/)
> >X-Spam-Report: Spam Filtering performed by sourceforge.net.See
> >http://spamassassin.org/tag/ for more details.Report problems
> >tohttp://sf.net/tracker/?func=add&group_id=1&atid=210.5
> 

[WiX-users] Custom Action on Condition

2006-08-07 Thread Magus

I have a custom action that is only suppose to run during installation.  How
would I set it up so that it doesn't do the custom action on uninstall.
-- 
View this message in context: 
http://www.nabble.com/Custom-Action-on-Condition-tf2064607.html#a5687953
Sent from the wix-users forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Multi-language msi

2006-08-07 Thread Rob Mensching
So why don't you go send a comment from the Windows Installer team's blog
and tell them to document the feature or quit using it themselves?
Complaining to the volunteers that work on the WiX toolset won't do you
nearly as much good as commenting directly.  It might make you feel better
but it certainly doesn't motivate me because there isn't anything we can do
in the WiX toolset to document undocumented Windows Installer features.

That said I have passed on the localization challenges that people have
brought up here to the Windows Installer team several times.  However, it is
easy for teams at Microsoft to view me as "just one person".

Want better odds that your issues get addressed?  Get a number of people
that agree together and together try to convince the responsible team to
address your needs.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John Lemire
Sent: Monday, August 07, 2006 08:04
To: WiX-users
Subject: Re: [WiX-users] Multi-language msi

Yes the hypocrisy of which is not lost on us as Microsoft uses this
exceptionally handy feature itself (in the windows installer installer
instmsi.exe no less) while discouraging it and leaving it undocumented...



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Custom actions

2006-08-07 Thread Scott Sam
I'm trying to create a custom action that executes the caspol.exe file
that already exists on the target machine.  I can't figure out what I am
doing wrong.  Does anyone have any suggestions?
I want to set up caspol policy for .net 2.0, if they are installed on
the target machine.  I have this to check if it is installed.



Then I use this custom action to execute it.
  

I'm getting this error in the log file.
Action 9:36:00: CreateCaspol20CA. 
MSI (s) (00:50) [09:36:00:750]: Executing op:
CustomActionSchedule(Action=CreateCaspol20CA,ActionType=1074,,Target=C:\
WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -addgroup 1
-site localhost FullTrust -name "Xenware 2.0",)
MSI (s) (00:50) [09:36:01:020]: Note: 1: 1721 2: CreateCaspol20CA 3:  4:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -addgroup 1
-site localhost FullTrust -name "Xenware 2.0"

I can't figure out what I am doing wrong.  Is there a better way to do
this?  If I copy everything after the 4: in the error message above, and
paste it on the command line, it works fine.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Custom actions

2006-08-07 Thread Brian Simoneau
The Property attribute should contain the full path of the executable
and the ExeCommand attribute should only have the command line
parameters.  Try


-Brian Simoneau

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott Sam
Sent: Monday, August 07, 2006 12:51 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Custom actions


I'm trying to create a custom action that executes the caspol.exe file
that already exists on the target machine.  I can't figure out what I am
doing wrong.  Does anyone have any suggestions?
I want to set up caspol policy for .net 2.0, if they are installed on
the target machine.  I have this to check if it is installed.



Then I use this custom action to execute it.
  

I'm getting this error in the log file.
Action 9:36:00: CreateCaspol20CA. 
MSI (s) (00:50) [09:36:00:750]: Executing op:
CustomActionSchedule(Action=CreateCaspol20CA,ActionType=1074,,Target=C:\
WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -addgroup 1
-site localhost FullTrust -name "Xenware 2.0",)
MSI (s) (00:50) [09:36:01:020]: Note: 1: 1721 2: CreateCaspol20CA 3:  4:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -addgroup 1
-site localhost FullTrust -name "Xenware 2.0"

I can't figure out what I am doing wrong.  Is there a better way to do
this?  If I copy everything after the 4: in the error message above, and
paste it on the command line, it works fine.




-
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Multi-language msi

2006-08-07 Thread Chesong Lee

I never knew that automatic language selection feature was in MSI engine. Seems 
like that's why InstallShield guys are using 1033.mst or .mst in their 
localization. But they do not embed the language transforms which may invoke 
automatic transform selection. Thanks for the tip.

And as for prior comments, I thought you were using single MSI for multiple 
languages without transforms. But in your case, there will be no problem for 
different code pages as long as transforms are used and main msi code page is 
"0".

Regards,

Chesong Lee

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Lemire
Sent: Monday, August 07, 2006 11:04 AM
To: WiX-users
Subject: Re: [WiX-users] Multi-language msi

Yes the hypocrisy of which is not lost on us as Microsoft uses this 
exceptionally handy feature itself (in the windows installer installer 
instmsi.exe no less) while discouraging it and leaving it undocumented...

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of DEÁK JAHN, Gábor
Sent: Sunday, August 06, 2006 1:28 PM
To: WiX-users
Subject: [WiX-users] Multi-language msi

On Sun, 6 Aug 2006 11:32:20 -0700, Derek Cicerone wrote:

Derek,

> It's not officially supported by the MSI team (they
> discourage people from using it).  I'm not sure why though.

Actually, as far as I know, it's naming the transforms according to the 
codepage numbers (what would make the selection of the language automatic) is 
discouraged, not the use of the transforms themselves like this:

msiexec /i SampleMulti.msi TRANSFORMS="fr-fr.mst"

Bye,
   Gábor

---
DEÁK JAHN, Gábor -- Budapest, Hungary
E-mail: [EMAIL PROTECTED]



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Multi-language msi

2006-08-07 Thread John Lemire
Who (squealing brakes) Sorry please don't get me wrong, I'm *NOT*
complaining about it here. Rereading that I can see how the word
"hypocrisy" could lead to an assumption about the overall tone and I
should have inserted a smiley to clearly convey that that was meant to
be a friendly poke in the ribs.

I'm just asking if there's any wix authoring support for it. It was
pointed out that it was discouraged/undocumented which I wanted to
counter point because I didn't want that to too heavily (negatively)
influence anyone's thoughts about potentially adding such support if it
not there already.

I am quite aware of the fact that wix support for it may go along way
towards generating more traction for it and ensuring that it did not
disappear in the future and that that might be a *BAD* thing. I would be
quite elated if the answer was no we don't support it and we don't ever
intend to because we've come up with a much better solution.

Maybe those of you more intimately familiar with msi and the wix tool
set already have much better alternate suggestions in mind or already in
place for achieving the same thing that would make support for that
method a completely moot point.

Perhaps a shell msi which is nothing more that a bunch of individual
localized msis stored as binary blobs and a custom action to extract the
correct one and run it? That might be much more flexible while at the
same time avoid the transform limitations Derek pointed out and the
codepage problems Chesong pointed out. Perhaps this would be tragically
inefficient but you have much better ideas...

What I'm faced with is trying to come up with a single multi language
installer. The guys who do the java versions of our product have an
install shield based one for all the non windows platforms so our
production guys are asking for the same from us for the .NET version of
our product. They are mentally operating at the sku/download level so
they don't care about fantastic msi advantages over the install support
for other platforms or what our customers who are installing the java
stuff on windows anyway are losing by not using an msi based install
shield installer. No many how many bats I bring to the game I can't beat
that sense into them.

At the moment what I have to work with is a VS deployment project
generated msi and a bunch of script that does post processing work on it
hammering in additional ui buttons that invoke ca's, radio buttons that
control conditionally skipping dialog sequences, patches to fix up
silent install, etc, etc, etc. Believe me the process is exactly as
hideous and fragile as you are imagining while you push back from your
keyboard and cringe. I also have everything I think I need to put into
the new installer, including all the localized versions of the installer
strings. Now I'm faced with piling more investment into this steaming
pile or taking a new tact. So I am VERY aware that I am the one asking
you guys for help.

Also although I'm a newbie here I have taken the time to read almost
every msg posted on this list for the 60 or so days so I know that
everyone that contributes is doing so voluntarily and that you and Derek
must spend tons of hours doing so between both advancing the wix code
base and trying to helpfully answer questions here. I have spent lots of
hours volunteering on various ASP.NET and continuous integration things
so I can truly appreciate what you're doing and I am very thankful for
both of your contributions as well as those of others who's names I'm
not yet familiar with yet.

Appologies for the misunderstanding and many thanks for the great work,
commitment, and effort.

-john




-Original Message-
From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 9:13 AM
To: John Lemire; WiX-users
Subject: RE: [WiX-users] Multi-language msi

So why don't you go send a comment from the Windows Installer team's
blog
and tell them to document the feature or quit using it themselves?
Complaining to the volunteers that work on the WiX toolset won't do you
nearly as much good as commenting directly.  It might make you feel
better
but it certainly doesn't motivate me because there isn't anything we can
do
in the WiX toolset to document undocumented Windows Installer features.

That said I have passed on the localization challenges that people have
brought up here to the Windows Installer team several times.  However,
it is
easy for teams at Microsoft to view me as "just one person".

Want better odds that your issues get addressed?  Get a number of people
that agree together and together try to convince the responsible team to
address your needs.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of John
Lemire
Sent: Monday, August 07, 2006 08:04
To: WiX-users
Subject: Re: [WiX-users] Multi-language msi

Yes the hypocrisy of which is not lost on us as Microsoft uses this
exceptionally handy feature itself (in the windows installer insta

[WiX-users] Multi-language msi

2006-08-07 Thread DE�K JAHN, G�bor
On Mon, 7 Aug 2006 11:30:51 -0700, John Lemire wrote:

John,

> Maybe those of you more intimately familiar with msi and the wix
> tool set already have much better alternate suggestions in mind or
> already in place for achieving the same thing that would make
> support for that method a completely moot point.

The solution with transforms can be easily done with WiX and a few available 
tools from Microsoft (actually, I started to write a replacement utility 
instead of those MS ones, after all they do nothing else but call MSI API 
function themselves; I came stuck at one point but I no longer remember where 
and why, I would need to dig up the code; of course, if it would work, it would 
be contributed to the project itself). Even the undocumented and discouraged 
part of it can be done with WiX if you chose to do so. I left it out from the 
tutorial on purpose, after having asked Rob about the issue.

But even with the documented way, it's a ten-minute job to come up with a 
single dialog bootstrapper in your favorite programming environment that offers 
a listbox of all the languages you provide in your installation, checks the 
system language and sets it as default, then at the touch of an OK button calls

msiexec /i SampleMulti.msi TRANSFORMS="fr-fr.mst"

with the appropriate names of the transforms hardwired.

Bye,
   Gábor

---
DEÁK JAHN, Gábor -- Budapest, Hungary
E-mail: [EMAIL PROTECTED]

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Custom actions

2006-08-07 Thread Scott Sam
I made that change, that you suggested and now I get this error in the
log.  Any other ideas?

MSI (s) (5C:A0) [16:44:44:140]: Executing op:
CustomActionSchedule(Action=CreateCaspol20CA,ActionType=1074,,Target=-m
-addgroup 1 -site localhost FullTrust -name "Xenware 2.0",)
MSI (s) (5C:A0) [16:44:44:150]: Note: 1: 1721 2: CreateCaspol20CA 3:  4:
-m -addgroup 1 -site localhost FullTrust -name "Xenware 2.0"

-Original Message-
From: Brian Simoneau [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 12:59 PM
To: Scott Sam; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Custom actions

The Property attribute should contain the full path of the executable
and the ExeCommand attribute should only have the command line
parameters.  Try


-Brian Simoneau

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Scott Sam
Sent: Monday, August 07, 2006 12:51 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Custom actions


I'm trying to create a custom action that executes the caspol.exe file
that already exists on the target machine.  I can't figure out what I am
doing wrong.  Does anyone have any suggestions?
I want to set up caspol policy for .net 2.0, if they are installed on
the target machine.  I have this to check if it is installed.



Then I use this custom action to execute it.
  

I'm getting this error in the log file.
Action 9:36:00: CreateCaspol20CA. 
MSI (s) (00:50) [09:36:00:750]: Executing op:
CustomActionSchedule(Action=CreateCaspol20CA,ActionType=1074,,Target=C:\
WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -addgroup 1
-site localhost FullTrust -name "Xenware 2.0",)
MSI (s) (00:50) [09:36:01:020]: Note: 1: 1721 2: CreateCaspol20CA 3:  4:
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\caspol.exe -m -addgroup 1
-site localhost FullTrust -name "Xenware 2.0"

I can't figure out what I am doing wrong.  Is there a better way to do
this?  If I copy everything after the 4: in the error message above, and
paste it on the command line, it works fine.




-
Using Tomcat but need to do more? Need to support web services,
security?
Get stuff done quickly with pre-integrated technology to make your job
easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache
Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] cab files getting corrupted

2006-08-07 Thread Bob Arnson
Simon Porter wrote:
> I'm not sure what the error is. Do you mean it should be something like this
> instead?
>
>  Source="settings.cab/KRB5.INI" />
>  Source="settings.cab/KRB.CON" />
>  Source="settings.cab/KRBREALM.CON" />
>   
The Source attribute specifies the file that should be installed. It 
doesn't support getting a file from a .cab. You need to specify a file, 
uncompressed, on the system that links the .wixobj.

-- 
sig://boB
http://bobs.org



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Custom Action on Condition

2006-08-07 Thread Bob Arnson
Magus wrote:
> I have a custom action that is only suppose to run during installation.  How
> would I set it up so that it doesn't do the custom action on uninstall.
>   
See 
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/msi/setup/examples_of_conditional_statement_syntax.asp
 
for examples.

-- 
sig://boB
http://bobs.org


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Setting Page Count property...

2006-08-07 Thread Vijay Kalasani








Hi,

 

Can somebody please help with setting up the Page Count
summary property? Here are the questions I have regarding setting this.

 


 What is the difference between
 Summary property and ordinary property? Would you set summary properties
 using Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are
 two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll really, truly, highly appreciate any help in this
regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Page Count property...

2006-08-07 Thread Derek Cicerone








Please give us an example of the authoring you are currently
trying.

 





From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vijay
Kalasani
Sent: Monday, August 07, 2006 3:24 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Setting Page Count property...





 

Hi,

 

Can
somebody please help with setting up the Page Count summary property? Here are
the questions I have regarding setting this.

 


 What is the difference between
 Summary property and ordinary property? Would you set summary properties using
 Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll
really, truly, highly appreciate any help in this regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Page Count property...

2006-08-07 Thread Vijay Kalasani








In the property table using ORCA, I am
trying to do the following and the validation fails. Now I am looking at some
documentation that suggests setting properties using custom action (type 51).

 

Page Count   200

 

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:30
PM
To: 'Vijay Kalasani';
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting
Page Count property...



 

Please give us an
example of the authoring you are currently trying.

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vijay Kalasani
Sent: Monday, August 07, 2006 3:24
PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Setting Page
Count property...





 

Hi,

 

Can somebody please help with setting up the Page Count
summary property? Here are the questions I have regarding setting this.

 


 What is the difference between
 Summary property and ordinary property? Would you set summary properties
 using Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are
 two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll really, truly, highly appreciate any help in this
regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Page Count property...

2006-08-07 Thread Vijay Kalasani








Did I answer your question though? Is this
what you wanted to know?

 









From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:36
PM
To:
'[EMAIL PROTECTED]'; 'wix-users@lists.sourceforge.net'
Subject: RE: [WiX-users] Setting
Page Count property...



 

In the property table using ORCA, I am
trying to do the following and the validation fails. Now I am looking at some
documentation that suggests setting properties using custom action (type 51).

 

Page
Count   200

 

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:30
PM
To: 'Vijay Kalasani';
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting
Page Count property...



 

Please give us an
example of the authoring you are currently trying.

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vijay Kalasani
Sent: Monday, August 07, 2006 3:24
PM
To:
wix-users@lists.sourceforge.net
Subject: [WiX-users] Setting Page
Count property...





 

Hi,

 

Can somebody please help with setting up the Page Count
summary property? Here are the questions I have regarding setting this.

 


 What is the difference between
 Summary property and ordinary property? Would you set summary properties
 using Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are
 two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll really, truly, highly appreciate any help in this
regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Page Count property...

2006-08-07 Thread Derek Cicerone








Why are you using Orca?  Everything inside an MSI can be set in
your WiX authoring.  What are you trying to set?

 

Derek

 





From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:44 PM
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting Page Count property...





 

Did I answer your question though? Is this what you wanted to know?

 









From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:36 PM
To: '[EMAIL PROTECTED]'; 'wix-users@lists.sourceforge.net'
Subject: RE: [WiX-users] Setting Page Count property...



 

In the property table using ORCA, I am trying to do the following
and the validation fails. Now I am looking at some documentation that suggests
setting properties using custom action (type 51).

 

Page Count   200

 

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:30 PM
To: 'Vijay Kalasani'; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting Page Count property...



 

Please give us an example of the authoring you are currently
trying.

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vijay
Kalasani
Sent: Monday, August 07, 2006 3:24 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Setting Page Count property...





 

Hi,

 

Can
somebody please help with setting up the Page Count summary property? Here are
the questions I have regarding setting this.

 


 What is the difference between
 Summary property and ordinary property? Would you set summary properties
 using Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll
really, truly, highly appreciate any help in this regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Page Count property...

2006-08-07 Thread Vijay Kalasani








I am fairly new to WiX authoring, so I am
first using Orca and then applying dark to get the wxs output. I want my
installer to work on systems with greater than or equal to Windows Installer
2.0 installed, where as it currently works only with Windows Installer 3.1, so
trying to set Page Count to 200, but I have no idea where exactly (I mean to be
more specific, which table in the Orca database) should I set it.

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:47
PM
To: 'Vijay Kalasani';
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting
Page Count property...



 

Why are you using
Orca?  Everything inside an MSI can be set in your WiX authoring. 
What are you trying to set?

 

Derek

 





From: Vijay
Kalasani [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:44
PM
To: [EMAIL PROTECTED];
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting
Page Count property...





 

Did I answer your question though? Is this
what you wanted to know?

 









From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:36
PM
To:
'[EMAIL PROTECTED]'; 'wix-users@lists.sourceforge.net'
Subject: RE: [WiX-users] Setting
Page Count property...



 

In the property table using ORCA, I am
trying to do the following and the validation fails. Now I am looking at some
documentation that suggests setting properties using custom action (type 51).

 

Page
Count   200

 

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:30
PM
To: 'Vijay Kalasani';
wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting
Page Count property...



 

Please give us an
example of the authoring you are currently trying.

 





From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Vijay Kalasani
Sent: Monday, August 07, 2006 3:24
PM
To:
wix-users@lists.sourceforge.net
Subject: [WiX-users] Setting Page
Count property...





 

Hi,

 

Can somebody please help with setting up the Page Count
summary property? Here are the questions I have regarding setting this.

 


 What is the difference between
 Summary property and ordinary property? Would you set summary properties
 using Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are
 two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll really, truly, highly appreciate any help in this
regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Setting Page Count property...

2006-08-07 Thread Derek Cicerone








In Orca, its View->SummaryInformation, the Schema option.

 

In WiX, it’s the Package element’s InstallerVersion attribute. 
In general, all SummaryInformation properties are set in WiX on the Package
element.  To learn more about this element and all the others, take a look at
wix.chm.

 

Derek

 





From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:52 PM
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting Page Count property...





 

I am fairly new to WiX authoring, so I am first using Orca and then
applying dark to get the wxs output. I want my installer to work on systems
with greater than or equal to Windows Installer 2.0 installed, where as it
currently works only with Windows Installer 3.1, so trying to set Page Count to
200, but I have no idea where exactly (I mean to be more specific, which table
in the Orca database) should I set it.

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:47 PM
To: 'Vijay Kalasani'; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting Page Count property...



 

Why are you using Orca?  Everything inside an MSI can be
set in your WiX authoring.  What are you trying to set?

 

Derek

 





From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:44 PM
To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting Page Count property...





 

Did I answer your question though? Is this what you wanted to know?

 









From: Vijay Kalasani
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:36 PM
To: '[EMAIL PROTECTED]'; 'wix-users@lists.sourceforge.net'
Subject: RE: [WiX-users] Setting Page Count property...



 

In the property table using ORCA, I am trying to do the following
and the validation fails. Now I am looking at some documentation that suggests
setting properties using custom action (type 51).

 

Page Count   200

 

 

Thanks,

Vijay

 









From: Derek Cicerone
[mailto:[EMAIL PROTECTED] 
Sent: Monday, August 07, 2006 3:30 PM
To: 'Vijay Kalasani'; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Setting Page Count property...



 

Please give us an example of the authoring you are currently
trying.

 





From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Vijay
Kalasani
Sent: Monday, August 07, 2006 3:24 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Setting Page Count property...





 

Hi,

 

Can
somebody please help with setting up the Page Count summary property? Here are
the questions I have regarding setting this.

 


 What is the difference between Summary
 property and ordinary property? Would you set summary properties using
 Property table or some other table?
 When I set Page Count using
 property table, validation is failing because “Page Count” are two words.
 I tried setting it up using the
 Summary Information in the view menu, but there is no field for Page Count
 property in there.


 

I’ll
really, truly, highly appreciate any help in this regard.

 

Thanks,

Vijay






-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] multiple children of Property element

2006-08-07 Thread mgruskin

What does it mean to have multiple children of a Property element? In the WiX
documentation it says the maximum number of ComponentRef children to a
Property element is unbounded.

The reason I'm interested is because I'm trying to set a property only if
one or more of a set of components is installed. If none of them are
installed I want the property to not be set. I was hoping I could do this by
listing multiple ComponentRef elements inside of a Property element. Would
this work? If not, what is the correct way to do this? Thanks.
-- 
View this message in context: 
http://www.nabble.com/multiple-children-of-Property-element-tf2069490.html#a5697453
Sent from the wix-users forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users