Re: [WiX-users] How to move progress bar during custom action

2009-03-18 Thread Michael
Hi Richard,

 Thanks for your suggestion. How do I use it? I can't modify EXE. Where 
I have to write MsiProcessMessage?

Regards,
-SMR

Richard wrote:
 In article 5a8c7ab90903170713j46a90ffeiae458e6fa1b1a...@mail.gmail.com,
 Don Benson dbenso...@gmail.com  writes:

   
 The Windows Installer documentation seems to indicate that the progress bar
 does not work after InstallFinalize. Check out the following, link,
 especially step 9.

 http://msdn.microsoft.com/en-us/library/aa367525(VS.85).aspx
 

 I think that's only because that example is talking about a deferred
 CA which must be in the install transaction.

 To change the progress bar, you need to call MsiProcessMessage with
 INSTALLMESSAGE_PROGRESS.  See
 http://msdn.microsoft.com/en-us/library/aa370354(VS.85).aspx
   
 


 No virus found in this incoming message.
 Checked by AVG - www.avg.com 
 Version: 8.0.237 / Virus Database: 270.11.17/2007 - Release Date: 03/17/09 
 10:18:00

   


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How do I check UserName and Password

2009-03-18 Thread Romeo Salayo Jr.

Hi SMR,

Make sure your Publish is nested under the Control of your Next
button.

Dialog Id=Dialog1 Width=370 Height=270 Title=[ProductName] Setup
Control Id=Next Type=PushButton X=236 Y=243 Width=56 
Height=17
Default=yes Text=Next
Publish Event=DoAction Value=CheckUser.Property 
Order=11/Publish
Publish Event=DoAction Value=CheckUser 
Order=21/Publish
Publish Event=SpawnWaitDialog Value=InvalidUserDlg
Order=3![CDATA[VALIDATEUSER  1]]/Publish
Publish Event=NewDialog Value=SetupDlg 
Order=4![CDATA[ProductID
AND VALIDATEUSER = 1]]/Publish
/Control
/Dialog

This works for me... or just put your Publish codes outside
DialogContron by assigning directly the Dialog and Control ID:

Publish Dialog=DialogName Control=Next Event=DoAction
Value=CheckUser.Property Order=11/Publish
Publish Dialog=DialogName Control=Next Event=DoAction
Value=CheckUser Order=21/Publish
Publish Dialog=DialogName Control=Next Event=SpawnWaitDialog
Value=InvalidUserDlg Order=3![CDATA[VALIDATEUSER  1]]/Publish
Publish Dialog=DialogName Control=Next Event=NewDialog
Value=SetupDlg Order=4![CDATA[ProductID AND VALIDATEUSER =
1]]/Publish

And make your your CA is working properly, try doing test with MessageBox()
so that you can see if it works properly with your next button.

Regards,
Romeo


Michael-12 wrote:
 
 Hi Romeo,
 
  Thanks for your suggestion.
 But, Still I'm in same case. Any more suggestions welcome.
 
 -SMR
 Romeo Salayo Jr. wrote:
 Hi SMR,

 Try putting a Order attribute in you Publish like this:
 Publish Event=DoAction Value=CheckUser.Property
 Order=11/Publish
 Publish Event=DoAction Value=CheckUser Order=21/Publish
 Publish Event=SpawnWaitDialog Value=InvalidUserDlg
 Order=3![CDATA[
 VALIDATEUSER  1]]/Publish
 Publish Event=NewDialog Value=SetupDlg Order=4![CDATA[ProductID
 AND
 VALIDATEUSER = 1]]/Publish 

 Hope this helps...

 Regards,
 Romeo


 Michael-12 wrote:
   
 Hi,

 I found the how to run custom action within control. my code is below, 
 (Within Next Control)
 Publish Event=DoAction
 Value=CheckUser.Property1/Publish
   Publish Event=DoAction Value=CheckUser1/Publish
   Publish Event=SpawnWaitDialog 
 Value=InvalidUserDlg![CDATA[ VALIDATEUSER  1]]/Publish
   Publish Event=NewDialog Value=SetupDlg![CDATA[ProductID 
 AND VALIDATEUSER = 1]]/Publish

 my custom action dll will set the property VALIDATEUSER = 1, if username 
 and password valid. But, When I click Next there is no action in
 Installer.

 -SMR

 Michael wrote:
 
 Hi,

 How do I run custom action on clicking Next button? I have custom
 action 
 to check username and password. I need to run that custom action on 
 clicking Next button? If username and password is error, an error 
 message must display that invalid username and password.

 Please help me out.

 Thanks,
 -SMR

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
 and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   
 


 No virus found in this incoming message.
 Checked by AVG - www.avg.com 
 Version: 8.0.237 / Virus Database: 270.11.15/2003 - Release Date:
 03/15/09 14:07:00

   
   
 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 

   
 


 No virus found in this incoming message.
 Checked by AVG - www.avg.com 
 Version: 8.0.237 / Virus Database: 270.11.16/2005 - Release Date:
 03/16/09 19:01:00

   
 
 
 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the 

Re: [WiX-users] Example HEAT command line?

2009-03-18 Thread Brian Rogers
Hey David,

Any reason in particular you are trying to extract an Interop file? You
should point to the actual assembly file.

Thanks,

Brian Rogers
Intelligence removes complexity. - Me
http://icumove.spaces.live.com


On Mon, Mar 16, 2009 at 10:08 AM, Weber Stefan (IT) s.we...@noerr.comwrote:

 Heat file thedll.dll -out test.wxs

 Stefan

 -Ursprüngliche Nachricht-
 Von: David Bartmess [mailto:david.bartm...@wallst.com]
 Gesendet: Montag, 16. März 2009 17:46
 An: 'General discussion for Windows Installer XML toolset.'
 Betreff: [WiX-users] Example HEAT command line?

 Could someone send an example of how to use heat to extract information
 from a DLL?

 I've been trying to use it, but I can't seem to get the command correct,
 because it just keeps showing me the help text.

 What I've been using is heat file interop.redemption.dll  test.wxs, and
 nothing happens.

 Thanks!




 David Bartmess

 Wall Street On Demand



 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] assembly version and MSBuild integration

2009-03-18 Thread PoKrec

hi
does any of you have an idea how to integrate wix with msbuild?

when it just coping assemblies it is straight forward, problems begin when I
need to register my .NET assemblies on target machine
one could say to use Heat for this ... but problem with Heat is that it
changes Component GUID every time
and since my assembly version changes quite often manual modifications is
not a solution

any suggestions?
PoKrec
-- 
View this message in context: 
http://n2.nabble.com/assembly-version-and-MSBuild-integration-tp2495869p2495869.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Push button custom action problem

2009-03-18 Thread sandun css
Hi,

I run a custom action when the finish button of the 'ExitDialog' is pressed.
But I need to run that custom action only in the install and repair modes.


Publish Dialog=ExitDialog Control=Finish Event=DoAction Value=
LaunchPSConfigUI(NOT REMOVE)/Publish

But, this executes the custom action in the uninstallation as well.

How can I resolve it?

Thanks,

Sandun
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Get currently building WiX culture in MSBuild

2009-03-18 Thread Alastair Smith
Do you have a link available for this feature request?  I can't seem to find it 
on the SF tracker.  

-Original Message-
From: Don Benson [mailto:dbenso...@gmail.com] 
Sent: 17 March 2009 14:15
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Get currently building WiX culture in MSBuild

I recently submitted a feature request on the bug tracker for this kind of
variable.

On Tue, Mar 17, 2009 at 9:40 AM, Alastair Smith
alastair.sm...@citrix.comwrote:

 Hi there

 I'm building an installer for multiple cultures.  Currently, the EULA is
 specified using the WixVariables element in the wixproj file as follows:

 WixVariablesWixUILicenseRtf=path\to\en\EULA.rtf/WixVariables

 What I'd like to do is replace the en bit of the path with some variable
 that indicates the culture currently being built so that the correct EULA is
 included for each culture.  After some extensive Googling, I haven't yet
 found an answer, so I'm wondering if this is possible?

 Many thanks in advance for your time and assistance.

 Kind regards

 Alastair Smith

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Push button custom action problem

2009-03-18 Thread Romeo Salayo Jr.

try this condition:

MaintenanceMode=Repair

Regards,
Romeo


sandun css wrote:
 
 Hi,
 
 I run a custom action when the finish button of the 'ExitDialog' is
 pressed.
 But I need to run that custom action only in the install and repair modes.
 
 
 Publish Dialog=ExitDialog Control=Finish Event=DoAction Value=
 LaunchPSConfigUI(NOT REMOVE)/Publish
 
 But, this executes the custom action in the uninstallation as well.
 
 How can I resolve it?
 
 Thanks,
 
 Sandun
 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

-- 
View this message in context: 
http://n2.nabble.com/Push-button-custom-action-problem-tp2496116p2496252.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] wix and xsd

2009-03-18 Thread Lough, Norman
I'm currently working on a project to automate the creation of wix
files. I ran xsd on the wix.xsd to create a wix.cs file. Most of it
seems to be working as expected except for the use of  enums. In
particular the YesNoType:

 

 

In the wix.xsd file:

xs:simpleType name=YesNoType

xs:annotationxs:documentationValues of this type will either
be yes or no./xs:documentation/xs:annotation

xs:restriction base='xs:NMTOKEN'

xs:enumeration value=no/

xs:enumeration value=yes/

/xs:restriction

/xs:simpleType

 

In the cs file:

/// remarks/

[System.CodeDom.Compiler.GeneratedCodeAttribute(xsd, 2.0.50727.42)]

[System.SerializableAttribute()]

[System.Xml.Serialization.XmlTypeAttribute(Namespace=http://schemas.mic
rosoft.com/wix/2006/wi)]

public enum YesNoType {



/// remarks/

no,



/// remarks/

yes,

}

 

I'm able to create the type and set the value though when serializing
the enum never shows. For example IncludeMinimium=yes would be
omitted, when writing out UpgradeVersion. Someone suggested adding
use=required to your xs:attribute or xs:element definition 

 

xs:simpleType name=YesNoType use=required

xs:annotationxs:documentationValues of this type will either
be yes or no./xs:documentation/xs:annotation

xs:restriction base='xs:NMTOKEN'

xs:enumeration value=no/

xs:enumeration value=yes/

/xs:restriction

/xs:simpleType

 

 

though if I try this I get:

 

Schema validation warning: The
'http://schemas.microsoft.com/wix/2006/wi:attribu

te' element is not supported in this context. Line 9628, position 2.

Error: Schema c:\program files\microsoft visual studio 8\vc\wix.xsd
could not be validated

 

I've also seen examples like the following:

 

   attribute name='required' use='optional' default='true'
simpleType
 restriction base='string'
  enumeration value='true'/
  enumeration value='false'/
 /restriction
/simpleType
   /attribute

 

Where the use= would be presumably be changed to required. This format
also failed.

 

Any ideas?

 

Norman Lough

Developer

Tel: +44 (0)191 213 

DDI: +44 (0)191 2028360

Email: norman.lo...@imass.co.uk

Imass Ltd, Northumbria House, Regent Centre, Gosforth, Newcastle upon
Tyne, NE3 3PX. http://www.imass.co.uk http://www.imass.co.uk/ 

 

Imass Limited is an Infoterra company, part of EADS Astrium

 

 

Registered in England and Wales No. 2379476

 

- Disclaimer -
The information contained in this e-mail and its attachments is
confidential and intended only for the use of the individual or entity
named above.  If you are not the intended recipient, please do not read,
copy, use or disclose this message or its attachments.  If you have
received this message in error, please notify the sender immediately and
delete or destroy all copies of this message and attachments in all
media.  Any views expressed in this e-mail that do not relate to Imass'
official business may not reflect the views of the company.

 

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Push button custom action problem

2009-03-18 Thread sandun css
It doesn't seem to fix the problem :(

On Wed, Mar 18, 2009 at 3:34 PM, Romeo Salayo Jr.
dfox.mxyzp...@gmail.comwrote:


 try this condition:

 MaintenanceMode=Repair

 Regards,
 Romeo


 sandun css wrote:
 
  Hi,
 
  I run a custom action when the finish button of the 'ExitDialog' is
  pressed.
  But I need to run that custom action only in the install and repair
 modes.
 
 
  Publish Dialog=ExitDialog Control=Finish Event=DoAction Value=
  LaunchPSConfigUI(NOT REMOVE)/Publish
 
  But, this executes the custom action in the uninstallation as well.
 
  How can I resolve it?
 
  Thanks,
 
  Sandun
 
 --
  Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
  powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
  easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
  software that enables intelligent coding and step-through debugging.
  Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
 

 --
 View this message in context:
 http://n2.nabble.com/Push-button-custom-action-problem-tp2496116p2496252.html
 Sent from the wix-users mailing list archive at Nabble.com.



 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] wix and xsd

2009-03-18 Thread Lough, Norman
Problem solved(?)

 

Wherever YesNoType 'TypeName'  is used (EmbedCab for inst.) there is a
corresponding 'TypeNameSpecified' bool - as long as I comment out the
bool type it works - dunno why this should be the case - maybe the
serialization process is getting the two confused and is adopting the
XmlIgnoreAttribute?

 

Norman Lough

Developer

Tel: +44 (0)191 213 

DDI: +44 (0)191 2028360

Email: norman.lo...@imass.co.uk

Imass Ltd, Northumbria House, Regent Centre, Gosforth, Newcastle upon
Tyne, NE3 3PX. http://www.imass.co.uk http://www.imass.co.uk/ 

 

Imass Limited is an Infoterra company, part of EADS Astrium

 

 

Registered in England and Wales No. 2379476

 

- Disclaimer -
The information contained in this e-mail and its attachments is
confidential and intended only for the use of the individual or entity
named above.  If you are not the intended recipient, please do not read,
copy, use or disclose this message or its attachments.  If you have
received this message in error, please notify the sender immediately and
delete or destroy all copies of this message and attachments in all
media.  Any views expressed in this e-mail that do not relate to Imass'
official business may not reflect the views of the company.

 

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] votive causing massive pauses in Visual Studio

2009-03-18 Thread Phil Sayers
I don't have a solution for you, but I know that the smarter people here
will want to know the versions of the tools you are using.
 
[1]wix/votive
[2]visual studio edition  service pack level.
[3]operating system service pack level.

-Original Message-
From: Adam Langley [mailto:alang...@winscribe.com] 
Sent: Tuesday, March 17, 2009 5:17 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] votive causing massive pauses in Visual Studio

Hi,

We are using WiX in solutions with 15-20 projects, including 4 WiX projects.
On 2 of our machines, one is XP and one is Vista32, Visual Studio hogs 50%
of the CPU for about 4 minutes after startup, then on the Vista machine the
text editor pauses for about a second on every operation (in _any_ file, C#,
Xml etc) such as keypresses and mouse clicks.
Unloading the WiX projects fixes the key-press pause, and uninstalling WiX
(Votive) fixes everything else...

Has anyone else experienced this problem?

Adam Langley
Senior Developer
Tel: +64 9 486 9010
www.winscribe.com
 
 




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] votive causing massive pauses in Visual Studio

2009-03-18 Thread Pally Sandher
Sounds like the age old IntelliSense bug if it's using 50% CPU on a dual-core 
machine (as in 1 full CPU core). I see this on VS 2005 when opening our main 
solutions (which have 90+ C++ projects, 0 WiX) but I've got a Core 2 Quad 
(Q6600) so it doesn't bother me too much.

Ask Microsoft nicely if they'll fix it. It's only been an issue for 3 years or 
so.

IIRC there is a DLL you can delete/rename to completely disable IntelliSense 
which will stop it happening but if you want/need the features IntelliSense 
provides it's not much of a solution.


Palbinder Sandher 
Software Deployment  IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the Virtual Environment**
Integrated Environmental Solutions Limited. Registered in Scotland No. SC151456 
Registered Office - Helix Building, West Of Scotland Science Park, Glasgow G20 
0SP
Email Disclaimer
 
 

-Original Message-
From: Phil Sayers [mailto:p...@cds-am.net] 
Sent: 18 March 2009 12:29
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] votive causing massive pauses in Visual Studio

I don't have a solution for you, but I know that the smarter people here will 
want to know the versions of the tools you are using.
 
[1]wix/votive
[2]visual studio edition  service pack level.
[3]operating system service pack level.

-Original Message-
From: Adam Langley [mailto:alang...@winscribe.com]
Sent: Tuesday, March 17, 2009 5:17 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] votive causing massive pauses in Visual Studio

Hi,

We are using WiX in solutions with 15-20 projects, including 4 WiX projects.
On 2 of our machines, one is XP and one is Vista32, Visual Studio hogs 50% of 
the CPU for about 4 minutes after startup, then on the Vista machine the text 
editor pauses for about a second on every operation (in _any_ file, C#, Xml 
etc) such as keypresses and mouse clicks.
Unloading the WiX projects fixes the key-press pause, and uninstalling WiX
(Votive) fixes everything else...

Has anyone else experienced this problem?

Adam Langley
Senior Developer
Tel: +64 9 486 9010
www.winscribe.com
 
 




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are 
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily 
build your RIAs with Flex Builder, the Eclipse(TM)based development software 
that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are 
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily 
build your RIAs with Flex Builder, the Eclipse(TM)based development software 
that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Support for conditional bootstrapper pre-requisites-Burn/dotNetInstaller/fw bootstrapper/other?

2009-03-18 Thread dB.
Fyi, the 1.6 beta of dotNetInstaller allows check combinations and
introduces And, Or and Not operators.

http://dotnetinstaller.codeplex.com/Release/ProjectReleases.aspx?Release
Id=23955  

cheers
dB.

-Original Message-
From: David Watson [mailto:dwat...@sdl.com] 
Sent: Tuesday, March 17, 2009 9:56 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Support for conditional bootstrapper
pre-requisites-Burn/dotNetInstaller/fw bootstrapper/other?

The dotnetinstaller's checks are designed to check for the item you are
installing but you can have multiple checks, but that still wouldn't
solve your problem. You can of course download the source code for it
and tweak it.

Dave

-Original Message-
From: Holmgren Mathias [mailto:mathias.holmg...@six.se] 
Sent: 17 March 2009 12:29
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Support for conditional bootstrapper pre-requisites
-Burn/dotNetInstaller/fw bootstrapper/other?

Our application install scenario contains conditional pre-requisites.

What bootstrappers can do this today?

Basically, we want a bootstrapper that can support this scenario:

1A) If App1 is installed, install X1 (matching addon MSI package to
App1)
1B) If App1 is not installed, don't install X1
1C) If App1 and X1 are both installed already, do nothing (done already)
2)  Start our own application MSI installer

That is, App1 is not a pre-requisite for the bootstrapper, but if
installed its presence requires an additional pre-requisite component to
be installed.

I would want the bootstrapper to use a registry search to detect if
application App1 is installed and if so install the matching
pre-requisite.

1) dotNetInstaller
I've checked out the dotNetInstaller, which looks interesting. It seems
to be able to do everything we need, except for the above requirement.

dotNetInstaller has the InstalledCheck element, but can it be used for
this scenario? It seems to only support checking for the presence of the
very same component that is about to be installed. I can't see a way to
link a component to be conditionally installed based on the presence of
another component. Is there a way to make this work w dotNetInstaller?

2) Other bootstrapper options
Can Burn or .NET FW bootstrapper handle this scenario? Some other
alternative?

By the way, I know Burn is put on hold until 3.0 ships, but what is
the current status of Burn as it exists now?

Ps. App1 is Excel v Xxxx and X1 is matching PIA v Xxxx.

/Mathias


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development software that enables intelligent coding and step-through
debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

SDL PLC confidential, all rights reserved.
If you are not the intended recipient of this mail SDL requests and
requires that you delete it without acting upon or copying any of its
contents, and we further request that you advise us.
SDL PLC is a public limited company registered in England and Wales.
Registered number: 02675207.  
Registered address: Globe House, Clivemont Road, Maidenhead, Berkshire
SL6 7DY, UK.



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to move progress bar during custom action

2009-03-18 Thread Don Benson
In order to show progress, you have to know two things: total work to be
done and current amount of work completed. MsiProcessMessage is used to
notify Windows Installer how much work has been completed.
Who knows how much work has been done? If it is the EXE that you cannot
modify, then I don't know how you could use a realistic progress bar.

You could fake the progress bar by creating a custom action that spawns two
background threads. One thread is the EXE that needs to run and the other is
a timer. When the timer updates you could increment the progress bar through
MsiProcessMessage.

To do this trickery, you'd have to estimate how long the EXE should take to
run. If a computer is faster, then your task will finish before the progress
bar is filled up. If the computer is slower, then your progress bar will get
stuck at 100% completed.

I have a lengthy executable that runs at the end of an installer. My
ProgessText for the custom action includes the text This may take several
minutes. Please be patient. The users don't get a progress bar, but their
expectations are set.

- Don Benson -

On Wed, Mar 18, 2009 at 1:57 AM, Michael mich...@gnhsoft.com wrote:

 Hi Richard,

  Thanks for your suggestion. How do I use it? I can't modify EXE. Where
 I have to write MsiProcessMessage?

 Regards,
 -SMR

 Richard wrote:
  In article 5a8c7ab90903170713j46a90ffeiae458e6fa1b1a...@mail.gmail.com
 ,
  Don Benson dbenso...@gmail.com  writes:
 
 
  The Windows Installer documentation seems to indicate that the progress
 bar
  does not work after InstallFinalize. Check out the following, link,
  especially step 9.
 
  http://msdn.microsoft.com/en-us/library/aa367525(VS.85).aspx
 
 
  I think that's only because that example is talking about a deferred
  CA which must be in the install transaction.
 
  To change the progress bar, you need to call MsiProcessMessage with
  INSTALLMESSAGE_PROGRESS.  See
  http://msdn.microsoft.com/en-us/library/aa370354(VS.85).aspx
 
  
 
 
  No virus found in this incoming message.
  Checked by AVG - www.avg.com
  Version: 8.0.237 / Virus Database: 270.11.17/2007 - Release Date:
 03/17/09 10:18:00
 
 



 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Get currently building WiX culture in MSBuild

2009-03-18 Thread Don Benson
It is issue 2677254.

On Wed, Mar 18, 2009 at 7:30 AM, Alastair Smith
alastair.sm...@citrix.comwrote:

 Do you have a link available for this feature request?  I can't seem to
 find it on the SF tracker.

 -Original Message-
 From: Don Benson [mailto:dbenso...@gmail.com]
 Sent: 17 March 2009 14:15
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Get currently building WiX culture in MSBuild

 I recently submitted a feature request on the bug tracker for this kind of
 variable.

 On Tue, Mar 17, 2009 at 9:40 AM, Alastair Smith
 alastair.sm...@citrix.comwrote:

  Hi there
 
  I'm building an installer for multiple cultures.  Currently, the EULA is
  specified using the WixVariables element in the wixproj file as follows:
 
  WixVariablesWixUILicenseRtf=path\to\en\EULA.rtf/WixVariables
 
  What I'd like to do is replace the en bit of the path with some
 variable
  that indicates the culture currently being built so that the correct EULA
 is
  included for each culture.  After some extensive Googling, I haven't yet
  found an answer, so I'm wondering if this is possible?
 
  Many thanks in advance for your time and assistance.
 
  Kind regards
 
  Alastair Smith
 
 
 --
  Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
  powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
  easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
  software that enables intelligent coding and step-through debugging.
  Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] setupbld bootstrapper 64bit

2009-03-18 Thread Frédéric Viollet

Hi,

I'm currently using setupbld (in Wix V3) as a bootstrapper for managing 
my product upgrades.
My team is willing to build a native 64 product. Compilation will be 
done on a 64 bit OS.

My questions are :
-do I have to install the 64bit version of Wix? I guess not...the 32bit 
version should still be working... am I right?
-will setupbld.exe build 64bit executables? If not, could this be a 
problem in installing a 64bit product? Can a 32bit bootstrapper install 
64bit products?


Thanks for your help.

Fred
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ARPNOREPAIR being over-ridden

2009-03-18 Thread Alastair Smith
Thanks for your reply, Bob.

Turns out the problem was that the ARPNOREPAIR property was defined at all, 
even with a value of 0.  Removing the line sorted the problem.  

Cheers

Alastair

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: 17 March 2009 17:35
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] ARPNOREPAIR being over-ridden

Alastair Smith wrote:
 However, Mondo appears to define ARPNOREPAIR true, 
It doesn't. It refers to it but doesn't define a value.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Get currently building WiX culture in MSBuild

2009-03-18 Thread Alastair Smith
Don, thanks for the issue number.  

It appears that you're requesting a pre-processor variable; I'm after an 
MSBuild variable exposed by wix.targets, similar to $(Configuration), 
$(Platform), etc.  

I see in wix.targets that there is a %(EmbeddedResourceWithCulture.Culture) 
metadata variable referenced (on line 1549, amongst other places), but I can't 
seem to successfully use it in my .wixproj files.  

Cheers

Alastair

-Original Message-
From: Don Benson [mailto:dbenso...@gmail.com] 
Sent: 18 March 2009 15:01
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Get currently building WiX culture in MSBuild

It is issue 2677254.

On Wed, Mar 18, 2009 at 7:30 AM, Alastair Smith
alastair.sm...@citrix.comwrote:

 Do you have a link available for this feature request?  I can't seem to
 find it on the SF tracker.

 -Original Message-
 From: Don Benson [mailto:dbenso...@gmail.com]
 Sent: 17 March 2009 14:15
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Get currently building WiX culture in MSBuild

 I recently submitted a feature request on the bug tracker for this kind of
 variable.

 On Tue, Mar 17, 2009 at 9:40 AM, Alastair Smith
 alastair.sm...@citrix.comwrote:

  Hi there
 
  I'm building an installer for multiple cultures.  Currently, the EULA is
  specified using the WixVariables element in the wixproj file as follows:
 
  WixVariablesWixUILicenseRtf=path\to\en\EULA.rtf/WixVariables
 
  What I'd like to do is replace the en bit of the path with some
 variable
  that indicates the culture currently being built so that the correct EULA
 is
  included for each culture.  After some extensive Googling, I haven't yet
  found an answer, so I'm wondering if this is possible?
 
  Many thanks in advance for your time and assistance.
 
  Kind regards
 
  Alastair Smith
 
 
 --
  Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
  powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
  easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
  software that enables intelligent coding and step-through debugging.
  Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Ram size checking

2009-03-18 Thread Hukumchand Shah
Hi,

Thank you for the reply.
I tested this on windows 2008,2003 and XP, on all of these machine actual
ram size is 2048MB
But in wix it shows PhysicalMemory = 2005.
So it's causing problem for me.
I can't put  PhysicalMemory = 2048 condition.

so what's the solution?

Please help. Thank you in advance.

Regards,
Hukum

On Tue, Mar 17, 2009 at 7:24 PM, Holmgren Mathias
mathias.holmg...@six.sewrote:

  I want to check Ram size before i start actual installation same as
 free
  disk space checking.

 Check out launch conditions. Like this

 Condition Message=Installing $(var.ApplicationFullName) requires at
 least 512 Mb primary memory.
  PhysicalMemory = 512
 /Condition


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Get currently building WiX culture in MSBuild

2009-03-18 Thread Don Benson
Sorry for confusing the issue.

On Wed, Mar 18, 2009 at 11:49 AM, Alastair Smith
alastair.sm...@citrix.comwrote:

 Don, thanks for the issue number.

 It appears that you're requesting a pre-processor variable; I'm after an
 MSBuild variable exposed by wix.targets, similar to $(Configuration),
 $(Platform), etc.

 I see in wix.targets that there is a %(EmbeddedResourceWithCulture.Culture)
 metadata variable referenced (on line 1549, amongst other places), but I
 can't seem to successfully use it in my .wixproj files.

 Cheers

 Alastair

 -Original Message-
 From: Don Benson [mailto:dbenso...@gmail.com]
 Sent: 18 March 2009 15:01
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Get currently building WiX culture in MSBuild

 It is issue 2677254.

 On Wed, Mar 18, 2009 at 7:30 AM, Alastair Smith
 alastair.sm...@citrix.comwrote:

  Do you have a link available for this feature request?  I can't seem to
  find it on the SF tracker.
 
  -Original Message-
  From: Don Benson [mailto:dbenso...@gmail.com]
  Sent: 17 March 2009 14:15
  To: General discussion for Windows Installer XML toolset.
  Subject: Re: [WiX-users] Get currently building WiX culture in MSBuild
 
  I recently submitted a feature request on the bug tracker for this kind
 of
  variable.
 
  On Tue, Mar 17, 2009 at 9:40 AM, Alastair Smith
  alastair.sm...@citrix.comwrote:
 
   Hi there
  
   I'm building an installer for multiple cultures.  Currently, the EULA
 is
   specified using the WixVariables element in the wixproj file as
 follows:
  
   WixVariablesWixUILicenseRtf=path\to\en\EULA.rtf/WixVariables
  
   What I'd like to do is replace the en bit of the path with some
  variable
   that indicates the culture currently being built so that the correct
 EULA
  is
   included for each culture.  After some extensive Googling, I haven't
 yet
   found an answer, so I'm wondering if this is possible?
  
   Many thanks in advance for your time and assistance.
  
   Kind regards
  
   Alastair Smith
  
  
 
 --
   Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
   powering Web 2.0 with engaging, cross-platform capabilities. Quickly
 and
   easily build your RIAs with Flex Builder, the Eclipse(TM)based
  development
   software that enables intelligent coding and step-through debugging.
   Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
   ___
   WiX-users mailing list
   WiX-users@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wix-users
  
 
 
 --
  Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
  powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
  easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
  software that enables intelligent coding and step-through debugging.
  Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 
 
 
 --
  Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
  powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
  easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
  software that enables intelligent coding and step-through debugging.
  Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
  ___
  WiX-users mailing list
  WiX-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wix-users
 

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 

Re: [WiX-users] setupbld bootstrapper 64bit

2009-03-18 Thread Bob Arnson
Frédéric Viollet wrote:
 -do I have to install the 64bit version of Wix? I guess not...the 
 32bit version should still be working... am I right?

The 64-bit WiX installer exists to support MSBuild running as a 64-bit 
process. That's all.

 -will setupbld.exe build 64bit executables? If not, could this be a 
 problem in installing a 64bit product? Can a 32bit bootstrapper 
 install 64bit products?

No, no, yes. This all assumes you're talking x64, not IA64.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Get currently building WiX culture in MSBuild

2009-03-18 Thread Bob Arnson
Alastair Smith wrote:
 It appears that you're requesting a pre-processor variable; I'm after an 
 MSBuild variable exposed by wix.targets, similar to $(Configuration), 
 $(Platform), etc.  
   

It comes down to the same thing, because wix.targets has to expose it to 
the Compile target.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] (no subject)

2009-03-18 Thread Bob Arnson
Henk Roos wrote:
 I would like to know something about the Visual Studio Wix projects. If I 
 specifically state in the product wix file that I am building for a 64 bit 
 platform  by adding  Platform=x64 to the Package element, does it matter 
 then whether the project is set to x86 or x64 in the visual studio 
 configuration?
   

Not unless you do something in your .wixproj or .wx? files that uses the 
Platform variable.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Ram size checking

2009-03-18 Thread Frederico Rico Apostolo
Ye

Condition Message=Installing $(var.ApplicationFullName) requires at
 least 512 Mb primary memory.
  PhysicalMemory = (desiredMemoryValue*0.9)
 /Condition

live isn't usually perfect... and this doesn't look bad, I guess unless in 5 
years u needed 16Gb and u put 14.6Gb and windows tells PhysicalMemory == 
14.5Gb. ok maybe I coded a little to much today lol. By the way

using Microsoft.Deployment.WindowsInstaller;
[CustomAction]
Rulled my day I didn't found in wix manual 3.0 but put it there because I could 
had a day work saved ehehe, guess in the updates I did to wix toolset I never 
realized I had a new template, great work to the wix development team.


-Original Message-
From: Wilson, Phil [mailto:phil.wil...@wonderware.com]
Sent: quarta-feira, 18 de Março de 2009 17:15
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Ram size checking

That value comes from Windows - the MSI property - so there's nothing you can 
do about except raise an issue with Microsoft. Why can't you just change the 
condition?
Phil Wilson


-Original Message-
From: Hukumchand Shah [mailto:hukum.s...@gmail.com]
Sent: Wednesday, March 18, 2009 9:47 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Ram size checking

Hi,

Thank you for the reply.
I tested this on windows 2008,2003 and XP, on all of these machine actual
ram size is 2048MB
But in wix it shows PhysicalMemory = 2005.
So it's causing problem for me.
I can't put  PhysicalMemory = 2048 condition.

so what's the solution?

Please help. Thank you in advance.

Regards,
Hukum

On Tue, Mar 17, 2009 at 7:24 PM, Holmgren Mathias
mathias.holmg...@six.sewrote:

  I want to check Ram size before i start actual installation same as
 free
  disk space checking.

 Check out launch conditions. Like this

 Condition Message=Installing $(var.ApplicationFullName) requires at
 least 512 Mb primary memory.
  PhysicalMemory = 512
 /Condition


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


__

Esta mensagem e ficheiros anexos incluem matéria privada, confidencial e 
legalmente protegida, 
exclusivamente destinada a quem nela conste como destinatário. Se recebeu esta 
mensagem por 
engano, agradecemos que informe de imediato o remetente e que elimine a 
mensagem e os 
ficheiros sem os utilizar, divulgar ou reproduzir.

This message and attached files contain private, confidential and legally 
privileged information, 
exclusively intended for the named addressees. If you have received this 
message in error, 
please contact the sender immediately and delete the message and files without 
utilization, 
circulation or reproduction.


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users 

Re: [WiX-users] Ram size checking

2009-03-18 Thread W. Craig Trader
Hukum ...

Just because you have 2GB of RAM installed in the machine, it doesn't
follow that the available physical memory will be 2048 MB.  Many
machines these day share RAM with video cards and other peripherals,
which reduces the physical memory available.  On 32-bit OSes without PAE
enabled (ie: Windows XP, 32-bit Windows Vista), memory address space
that is devoted to IO will also reduce the available memory (when you
have 4GB RAM installed).  What you're seeing is probably correct for
your test machines.  Example: my desktop machine has 8GB RAM installed,
with a 1GB Video Card, a RAID controller, and some other stuff.  On
64-bit Vista, my available memory is 8189 MB.  On 32-bit Vista, the
available memory was 2813 MB.

The solution is to set your physical memory threshold to be what your
application actually needs, and not an arbitrary round number.

- Craig -

-Original Message-
From: Hukumchand Shah [mailto:hukum.s...@gmail.com] 
Sent: Wednesday, March 18, 2009 12:47 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Ram size checking

Hi,

Thank you for the reply.
I tested this on windows 2008,2003 and XP, on all of these machine
actual
ram size is 2048MB
But in wix it shows PhysicalMemory = 2005.
So it's causing problem for me.
I can't put  PhysicalMemory = 2048 condition.

so what's the solution?

Please help. Thank you in advance.

Regards,
Hukum

On Tue, Mar 17, 2009 at 7:24 PM, Holmgren Mathias
mathias.holmg...@six.sewrote:

  I want to check Ram size before i start actual installation same as
 free
  disk space checking.

 Check out launch conditions. Like this

 Condition Message=Installing $(var.ApplicationFullName) requires at
 least 512 Mb primary memory.
  PhysicalMemory = 512
 /Condition




--
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Showing a bitmap image

2009-03-18 Thread Jyothsna Padavala
Hi Sudripta,

Did you get this (showing bitmap) problem sorted out ?
I've the same problem too and looking out for a solution.

Thanks,
Jyo

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: Monday, March 16, 2009 5:56 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Showing a bitmap image

Sudripta Nandy (Sarangsoft Corporation) wrote:
 Please let me know, what am I doing wrong. I also had tried with a
24-bit bmp image but, had no luck. Why is the bitmap not getting shown?
   

What does your Binary element look like?

-- 
sig://boB
http://joyofsetup.com/




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] setupbld bootstrapper 64bit

2009-03-18 Thread Frédéric Viollet
Bob Arnson a écrit :
 Frédéric Viollet wrote:
   
 -do I have to install the 64bit version of Wix? I guess not...the 
 32bit version should still be working... am I right?
 

 The 64-bit WiX installer exists to support MSBuild running as a 64-bit 
 process. That's all.

   
 -will setupbld.exe build 64bit executables? If not, could this be a 
 problem in installing a 64bit product? Can a 32bit bootstrapper 
 install 64bit products?
 

 No, no, yes. This all assumes you're talking x64, not IA64.
   
Thanks for your reply. I am indeed talking about x64 components.
So to be sure I'm not getting mixed up, let me summarize:
-I want to install a 64 bit product (my exes and dll are natively 
compiled for 64bit) on a 64bit OS
-I build an x64 MSI (Platform=x64, Win64=yes in Components, etc...)
-I build a 32bit bootstrapper using setupbld
-This setup will be able to install the embedded x64 MSI.

Am I right?
Thanks again for your help.

Fred

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Ram size checking

2009-03-18 Thread Holmgren Mathias
 Thank you for the reply.
 I tested this on windows 2008,2003 and XP, on all of these machine
actual
 ram size is 2048MB
 But in wix it shows PhysicalMemory = 2005.
 So it's causing problem for me.
 I can't put  PhysicalMemory = 2048 condition.
 
 so what's the solution?
 
 Please help. Thank you in advance.

How about PhysicalMemory = 2000?

It's kinda funny, but I'm actually serious.

Most machines that claim to have like 1 Gb memory on paper often seem
to show up as having 1020 Mb or similar give or take a few megs, they do
in our team. Thus, you should expect some natural variation in memory
available and I'm not sure Windows Installer is actually wrong here btw.

Don't know your situation, but you might have other options than to
enforce this the hard way using Win Installer only.

For instance, on our team our app memory requirements are 1 Gb memory.
For us, this limit has been set rather arbitrary based on what our app
needs for reasonable performance while still allowing the user to do
work using a few other normal apps at the same time.

Now most customers can meet those reqs, but not all. Knowing that
hardware upgrades can be expensive (esp for a whole org) our approach
has been to give some leeway on behalf of the customer while still
enforcing our HW standards.

This is how we do this.

We allow the application to install even if the HW is sub par (512 Mb is
our minimum level to allow install at all, since we feel it would simply
not be usable at all below that).

When the app starts we instead log the sub par HW and light a warning
icon in the toolbar of the application window. When hovered, a tooltip
informs the user that he might not experience full app performance
because his HW (blabla) is below minimum reqs. We light this warning
icon for 5 min after launch so it is not too annoying.

We like this approach because we feel allowing the user to do work using
a potentially slow app is better than stopping him altogether as long as
he is informed. If the user is unhappy about performance, he hopefully
now knows he should upgrade HW first before blaming the product or
calling customer support. If not, support can read the logs and do this
for him.

We do the same based on CPU speed.

Maybe something that can help you, dunno.

/Mathias

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Don't remove changed files

2009-03-18 Thread Jon Drnek
Is there a way that I can prevent files that we have installed from being
removed in an uninstall if the users have changed those files?

 

Thanks, 

 

Jon

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] setupbld bootstrapper 64bit

2009-03-18 Thread Bob Arnson
Frédéric Viollet wrote:
 -I want to install a 64 bit product (my exes and dll are natively 
 compiled for 64bit) on a 64bit OS
 -I build an x64 MSI (Platform=x64, Win64=yes in Components, etc...)
 -I build a 32bit bootstrapper using setupbld
 -This setup will be able to install the embedded x64 MSI.

 Am I right?
   

Yes or at least, I'm not aware of any bugs that would prevent it. MSI 
has both 32-bit and 64-bit install engines.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Is it safe to use a CustomAction longer than 255 bytes?

2009-03-18 Thread Bob Arnson
Dominic Herity wrote:
 First question: Is it safe to exceed 255 bytes in a command line?
   

Unknown. Generally yes, but you're going outside the scope of what's 
documented to work and there are cases where it's known to not work.

 Assuming it is safe, I need to run it in a build environment that treats 
 warnings as errors. I can disable the warning with -sice:ICE03, but that 
 seems to leave me vulnerable to other buffer overflow conditions.
 And it's always possible that the command line would exceed 8191 bytes and 
 I'd want to catch that?
 Second question: What's the safest way to eliminate this warning?
   

Validation can be disabled only entirely or at the individual ICE level. 
There's no way to tell ICE03 to report everything but a certain class of 
errors. And there's no way to tell it to check for an additional class 
of errors (8191).

So, don't pass ultra-long command lines. Better yet, don't use EXE 
custom actions at all:

http://blogs.msdn.com/heaths/archive/2007/10/24/exe-custom-actions-are-bad.aspx
http://blogs.msdn.com/windows_installer_team/archive/2007/10/20/integration-hurdles-for-exe-custom-actions.aspx

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How do I check UserName and Password

2009-03-18 Thread Michael
Hi Romeo,

 Yes, Publish is nested under the control of Next. But, when 
clicking Next button, either next dialog is not opening or error 
message not displayed.
I tried by putting Publish under the UI. Same behavior.
I took log for my msi.

Action 23:55:06: LicenseAgreementDlg. Dialog created
MSI (c) (68:4C) [23:55:07:296]: PROPERTY CHANGE: Adding LicenseAccepted 
property. Its value is '1'.
Action 23:55:07: UserRegistrationDlg. Dialog created
MSI (c) (68:4C) [23:55:09:250]: Doing action: CheckUser.Property
Action 23:55:09: CheckUser.Property.
Action start 23:55:09: CheckUser.Property.
MSI (c) (68:4C) [23:55:09:250]: PROPERTY CHANGE: Adding CheckUser 
property. Its value is 'Richard,'.
Action ended 23:55:09: CheckUser.Property. Return value 1.
MSI (c) (68:4C) [23:55:09:250]: Doing action: CheckUser
Action 23:55:09: CheckUser. Validating User...
Action start 23:55:09: CheckUser.
MSI (c) (68:A8) [23:55:09:250]: Invoking remote custom action. DLL: 
C:\DOCUME~1\Owner\LOCALS~1\Temp\MSI2AC.tmp, Entrypoint: ValidateUser
MSI (c) (68:38) [23:55:09:265]: Cloaking enabled.
MSI (c) (68:38) [23:55:09:265]: Attempting to enable all disabled 
priveleges before calling Install on Server
MSI (c) (68:38) [23:55:09:265]: Connected to service for CA interface.
MSI (c) (68!58) [23:55:09:343]: PROPERTY CHANGE: Adding *VALIDATEUSER 
*property. Its value is '*0*'.

its looks like property VALIDATEUSER set to 0. But, error message is not 
opening.

Regards,
-SMR

Romeo Salayo Jr. wrote:
 Hi SMR,

 Make sure your Publish is nested under the Control of your Next
 button.

 Dialog Id=Dialog1 Width=370 Height=270 Title=[ProductName] Setup
   Control Id=Next Type=PushButton X=236 Y=243 Width=56 
 Height=17
 Default=yes Text=Next
   Publish Event=DoAction Value=CheckUser.Property 
 Order=11/Publish
   Publish Event=DoAction Value=CheckUser 
 Order=21/Publish
   Publish Event=SpawnWaitDialog Value=InvalidUserDlg
 Order=3![CDATA[VALIDATEUSER  1]]/Publish
   Publish Event=NewDialog Value=SetupDlg 
 Order=4![CDATA[ProductID
 AND VALIDATEUSER = 1]]/Publish
   /Control
 /Dialog

 This works for me... or just put your Publish codes outside
 DialogContron by assigning directly the Dialog and Control ID:

 Publish Dialog=DialogName Control=Next Event=DoAction
 Value=CheckUser.Property Order=11/Publish
 Publish Dialog=DialogName Control=Next Event=DoAction
 Value=CheckUser Order=21/Publish
 Publish Dialog=DialogName Control=Next Event=SpawnWaitDialog
 Value=InvalidUserDlg Order=3![CDATA[VALIDATEUSER  1]]/Publish
 Publish Dialog=DialogName Control=Next Event=NewDialog
 Value=SetupDlg Order=4![CDATA[ProductID AND VALIDATEUSER =
 1]]/Publish

 And make your your CA is working properly, try doing test with MessageBox()
 so that you can see if it works properly with your next button.

 Regards,
 Romeo


 Michael-12 wrote:
   
 Hi Romeo,

  Thanks for your suggestion.
 But, Still I'm in same case. Any more suggestions welcome.

 -SMR
 Romeo Salayo Jr. wrote:
 
 Hi SMR,

 Try putting a Order attribute in you Publish like this:
 Publish Event=DoAction Value=CheckUser.Property
 Order=11/Publish
 Publish Event=DoAction Value=CheckUser Order=21/Publish
 Publish Event=SpawnWaitDialog Value=InvalidUserDlg
 Order=3![CDATA[
 VALIDATEUSER  1]]/Publish
 Publish Event=NewDialog Value=SetupDlg Order=4![CDATA[ProductID
 AND
 VALIDATEUSER = 1]]/Publish 

 Hope this helps...

 Regards,
 Romeo


 Michael-12 wrote:
   
   
 Hi,

 I found the how to run custom action within control. my code is below, 
 (Within Next Control)
 Publish Event=DoAction
 Value=CheckUser.Property1/Publish
   Publish Event=DoAction Value=CheckUser1/Publish
   Publish Event=SpawnWaitDialog 
 Value=InvalidUserDlg![CDATA[ VALIDATEUSER  1]]/Publish
   Publish Event=NewDialog Value=SetupDlg![CDATA[ProductID 
 AND VALIDATEUSER = 1]]/Publish

 my custom action dll will set the property VALIDATEUSER = 1, if username 
 and password valid. But, When I click Next there is no action in
 Installer.

 -SMR

 Michael wrote:
 
 
 Hi,

 How do I run custom action on clicking Next button? I have custom
 action 
 to check username and password. I need to run that custom action on 
 clicking Next button? If username and password is error, an error 
 message must display that invalid username and password.

 Please help me out.

 Thanks,
 -SMR

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
 and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 

Re: [WiX-users] Showing a bitmap image

2009-03-18 Thread Chad Petersen
Didn't Bob's reply help at all? He was asking what the Binary element
looks like. It should have the name of the binary file, the same name
using in the Control attribute. 

Binary Id=Maingraphic.bmp
src=$(env.WIXINSTALL)\UpdateTemplate\UI\HarlandLeftBanner_121x234.bmp/




Control Id=MainBitmap Type=Bitmap X=2 Y=2 Width=100
Height=232 Text=Maingraphic.bmp /


The combination of the two has always allowed me to display a bitmap in
my dialogs. But, if I remove or don't get the Binary element correct
then it won't display.

Hope that helps



-Original Message-
From: Jyothsna Padavala [mailto:jpadav...@industrialorigami.com] 
Sent: Wednesday, March 18, 2009 10:29 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Showing a bitmap image

Hi Sudripta,

Did you get this (showing bitmap) problem sorted out ?
I've the same problem too and looking out for a solution.

Thanks,
Jyo

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: Monday, March 16, 2009 5:56 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Showing a bitmap image

Sudripta Nandy (Sarangsoft Corporation) wrote:
 Please let me know, what am I doing wrong. I also had tried with a
24-bit bmp image but, had no luck. Why is the bitmap not getting shown?
   

What does your Binary element look like?

-- 
sig://boB
http://joyofsetup.com/




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Showing a hyperlink on a dialog

2009-03-18 Thread Rob Mensching
3 options that I know of:

1.  Use MSI 5.0
2.  Write an external UI handler
3.  Use a push button

Sudripta Nandy (Sarangsoft Corporation) wrote:
 I need to show a hyperlink control on one of my setup dialog. The setup 
 program should be compatible to Win XP and higher. Seems Win XP and Win VISTA 
 (SP1) don't have MSI version 5.0 where the hyperlink control is supported. 
 So, what is my best way to be able to show a hyperlink control. It needs to 
 have a look and feel of a hyperlink control and not a push button. Is there 
 any way to do it without using a push button?


 Thanks.
 Sudripta.
 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Showing a bitmap image

2009-03-18 Thread Jyothsna Padavala
Thanks Chad,
I could solve it.

!-- The control element in my custom dialog --
Control Id=BannerBitmap Type=Bitmap X=0 Y=0 Width=370
Height=44 TabSkip=no Text=[BannerBitmap] /

!-- The properties set to refer to the bitmap image --
Property Id=BannerBitmapbannrbmp/Property
Binary Id=bannrbmp src=$(env.STAGE)\PROE\WF30\Resource\IOILogo.bmp
/


Thanks




-Original Message-
From: Chad Petersen [mailto:chad.peter...@harlandfs.com] 
Sent: Wednesday, March 18, 2009 11:48 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Showing a bitmap image

Didn't Bob's reply help at all? He was asking what the Binary element
looks like. It should have the name of the binary file, the same name
using in the Control attribute. 

Binary Id=Maingraphic.bmp
src=$(env.WIXINSTALL)\UpdateTemplate\UI\HarlandLeftBanner_121x234.bmp/




Control Id=MainBitmap Type=Bitmap X=2 Y=2 Width=100
Height=232 Text=Maingraphic.bmp /


The combination of the two has always allowed me to display a bitmap in
my dialogs. But, if I remove or don't get the Binary element correct
then it won't display.

Hope that helps



-Original Message-
From: Jyothsna Padavala [mailto:jpadav...@industrialorigami.com] 
Sent: Wednesday, March 18, 2009 10:29 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Showing a bitmap image

Hi Sudripta,

Did you get this (showing bitmap) problem sorted out ?
I've the same problem too and looking out for a solution.

Thanks,
Jyo

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: Monday, March 16, 2009 5:56 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Showing a bitmap image

Sudripta Nandy (Sarangsoft Corporation) wrote:
 Please let me know, what am I doing wrong. I also had tried with a
24-bit bmp image but, had no luck. Why is the bitmap not getting shown?
   

What does your Binary element look like?

-- 
sig://boB
http://joyofsetup.com/




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Example HEAT command line?

2009-03-18 Thread David Bartmess
I'm just following the sequence of events in the current/old installer, where 
it was using a vbscript to run regasm on the file.

If this isn't needed, please let me know, but as far as I know, I need to 
register this interop file. 

-Original Message-
From: Brian Rogers [mailto:rogers.br...@gmail.com] 
Sent: Wednesday, March 18, 2009 12:43 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Example HEAT command line?

Hey David,

Any reason in particular you are trying to extract an Interop file? You should 
point to the actual assembly file.

Thanks,

Brian Rogers
Intelligence removes complexity. - Me
http://icumove.spaces.live.com


On Mon, Mar 16, 2009 at 10:08 AM, Weber Stefan (IT) s.we...@noerr.comwrote:

 Heat file thedll.dll -out test.wxs

 Stefan

 -Ursprüngliche Nachricht-
 Von: David Bartmess [mailto:david.bartm...@wallst.com]
 Gesendet: Montag, 16. März 2009 17:46
 An: 'General discussion for Windows Installer XML toolset.'
 Betreff: [WiX-users] Example HEAT command line?

 Could someone send an example of how to use heat to extract 
 information from a DLL?

 I've been trying to use it, but I can't seem to get the command 
 correct, because it just keeps showing me the help text.

 What I've been using is heat file interop.redemption.dll  test.wxs, 
 and nothing happens.

 Thanks!




 David Bartmess

 Wall Street On Demand



 --
  Apps built with the Adobe(R) Flex(R) framework and Flex 
 Builder(TM) are powering Web 2.0 with engaging, cross-platform 
 capabilities. Quickly and easily build your RIAs with Flex Builder, 
 the Eclipse(TM)based development software that enables intelligent 
 coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users


 --
  Apps built with the Adobe(R) Flex(R) framework and Flex 
 Builder(TM) are powering Web 2.0 with engaging, cross-platform 
 capabilities. Quickly and easily build your RIAs with Flex Builder, 
 the Eclipse(TM)based development software that enables intelligent 
 coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com 
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are 
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily 
build your RIAs with Flex Builder, the Eclipse(TM)based development software 
that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com 
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Wixlibs - custom tables merging

2009-03-18 Thread Rob Mensching
You need to define the CustomTable (the one with the Column 
definitions) in one Fragment then you can use that CustomTable (the 
one with Row data) in many other Fragments.  It is not allowed to define 
the same CustomTable in multiple Fragments and include it into the same 
target.

Maciej Oszutowski wrote:
 Hi,

 I am currently trying to convert some of my merge modules to wixlibs.
 The problem I found today is:
 I have few mergemodules that have common custom table defined. It
 works perfectly, all tables are merged together build time and
 resulting msi has single table containing rows from all merged
 modules. Unfortunately I'm unable to do such thing using wixlibs -
 I'm getting bunch of errors like:
 Module1\CustomTables.wxi(3): error LGHT0091: Duplicate symbol 
 'WixCustomTable:AdminMoveFiles' found.
 Module2\CustomTables.wxi(3): error LGHT0092: Location of symbol related to 
 previous error.
 at link time.

 Is there any way to merge duplicated tables like it works for
 mergemodules?
 Any ideas?

 --
 Regards,
 Maciej Oszutowski


 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] ActionText and Error localization

2009-03-18 Thread Pankaj Garg

For localizing setup we are supposed to import the tables from Intl folder of 
Installer SDK. (http://msdn.microsoft.com/en-us/library/aa369771(VS.85).aspx)
Can the same be achieved by adding the table to wixlib and just using light, I 
tried it but it didn’t worked. 
 
If not what is the ideal way of creating the table files as we need to support 
few locales not provided.
 
Thanks
Pankaj
_
Windows Live™: Life without walls.
http://windowslive.com/explore?ocid=TXT_TAGLM_WL_allup_1a_explore_032009
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Weird ICE61

2009-03-18 Thread Alex Ivanoff
I have the following code

UpgradeVersion Minimum=1.0.0.0
IncludeMinimum=yes
Maximum=1.3.40318.0
IncludeMaximum=no
Language=1033
Property=UPGRADEFOUND /

that results in ICE61

error LGHT0204: ICE61: Upgrade.VersionMax 1.3.40318.0 format is wrong

If I change 1.3.40318.0 to 1.3.32768.0 I still get an error, but if I
change it to 1.3.32767.0 the error goes away. Looks like WiX has a bug
in version parsing (it uses Int16 instead of UInt16).

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ActionText and Error localization

2009-03-18 Thread Bob Arnson
Pankaj Garg wrote:
 If not what is the ideal way of creating the table files as we need to 
 support few locales not provided.
   

.wxl files. See WiX.chm.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Don't remove changed files

2009-03-18 Thread Bob Arnson
Jon Drnek wrote:
 Is there a way that I can prevent files that we have installed from being
 removed in an uninstall if the users have changed those files?
   

No, modified files are preserved during upgrades but not uninstall. You 
can only make it permanent to leave it behind permanently.

-- 
sig://boB
http://joyofsetup.com/



--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Adding system wide module to IIS7 on 64-bit OS

2009-03-18 Thread Rob Mensching
Why not use System64Folder?  That's the more correct solution.

Scott Sam wrote:
 I figured out my problem.  I was using
 [SystemFolder]inetsrv\config\applicationHost.config as the file, which
 resolved to c:\windows\syswow64\inetsrv\config\applicationHost.config.
 I switched to
 [WindowsFolder]System32\inetsrv\config\applicationHost.config, and that
 worked.

 -Original Message-
 From: Scott Sam [mailto:s...@clearviewecm.com]
 Sent: Wednesday, March 11, 2009 4:11 PM
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Adding system wide module to IIS7 on 64-bit OS

 I didn't see any replies to this.  I'm having the same problem.  I
 figured out the cause, but I'm not sure on what to do for a solution.
 The problem is that windows does a redirect to the syswow64 folder, and
 the applicationHost.config file doesn't exist there. So it can't be
 accessed by anything running in 32-bit. I'm using wix version
 3.0.4721.0.  Anyone have any suggestions?

 -Original Message-
 From: Adam Eversole [mailto:adam.evers...@microsoft.com]
 Sent: Monday, January 26, 2009 4:33 PM
 To: wix-users@lists.sourceforge.net
 Subject: Re: [WiX-users] Adding system wide module to IIS7 on 64-bit OS

 Additional info, I am using WIX 3.0.4827.0
 With the following:

 ?if $(var.ProcessorArchitecture)=x64?
   ?define 64bit=yes?
   ?define ProgramFiles=ProgramFiles64Folder?
   ?define ProductGuid={YOURGUID-C701-42ab-B252-2D8C869CA7E3}?
   ?define UpgradeGuid={YOURGUID-C16C-4aeb-B439-F6A42EB6C022}?
 ?else?
   ?define 64bit=no?
   ?define ProgramFiles=ProgramFilesFolder?
   ?define ProductGuid={YOURGUID-4B18-446e-AD6E-35EB81EB56EE}?
   ?define UpgradeGuid={YOURGUID-9F5B-4271-90B0-7D0C3A6FC4DE}?
 ?endif?
   Product Id=$(var.ProductGuid) Name=MyProduct.ServerSetup
 Language=1033 Version=1.0.0.0 Manufacturer=MySoftware
 UpgradeCode=$(var.UpgradeGuid)
 Package InstallerVersion=200 Compressed=yes
 InstallPrivileges=elevated Platform=$(var.ProcessorArchitecture)/

 I didn't get any replies in my e-mail, but noticed there was an actual
 reply on the archive.

 If anybody could help I would be most appreciative

 Thanks,

 Adam
 From: Adam Eversole
 Sent: Friday, January 23, 2009 2:24 PM
 To: 'wix-users@lists.sourceforge.net'
 Subject: Adding system wide module to IIS7 on 64-bit OS

 I have a setup that installs a system-wide managed-code module in IIS7.
 I do this as follows:

   Component Id=modulesConfig
 Guid={3D0ACDA1-C029-4084-B3F7-51822745A7ED} Win64=$(var.64bit)
util:XmlConfig Id=addMyHandler Sequence=4
 File=[IISINSTALLDIR]Config\applicationHost.config
 ElementPath=//system.webServer/modules Name=add
 Node=element
 Action=create On=install /
 util:XmlConfig Id='add_name' Sequence='5'
 File='[IISINSTALLDIR]Config\applicationHost.config'
 ElementId='addMyHandler' Name='name' Value='myHandler' /
 util:XmlConfig Id='add_type' Sequence='6'
 File='[IISINSTALLDIR]Config\applicationHost.config'
 ElementId='addMyHandler' Name='type'
 Value='MyHandler.Module, MyHandler, Version=1.0.0.1, Culture=neutral,
 PublicKeyToken=9a9d230324c99377' /

 util:XmlConfig Id=modulesConfigRemove Sequence=4
 File=[IISINSTALLDIR]Config\applicationHost.config
 ElementPath=//system.webServer/modules
 VerifyPath=//system.webServer/modules/add[...@name='myHandler'[\]]
 Name=add Node=element
 Action=delete On=uninstall /
   /Component

 With the following preprocessor command setting var.64bit:

 ?ifdef $(var.ProcessorArchitecture) = x64?
   ?define 64bit=yes?
 ?else?
   ?define 64bit=no?
 ?endif?

 This seems to work just fine in 32-bit, but in 64-bit it fails with the
 following error:

 Action 14:21:52: ExecXmlConfig.
 Error 25541. Failed to open XML file
 C:\Windows\system32\inetsrv\Config\applicationHost.config, system error:
 -2147024786

 I can't figure it out, I made sure I have access to the file in elevated
 mode (the elevated prompt comes up), and it works great in 32-bit.

 Any ideas? Is there a better way to do this?

 Thanks,

 Adam

 
 --
 This SF.net email is sponsored by:
 SourcForge Community
 SourceForge wants to tell your story.
 http://p.sf.net/sfu/sf-spreadtheword
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 
 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 

Re: [WiX-users] Advice on Click Through technology wanted

2009-03-18 Thread Rob Mensching
In order to focus on finishing WiX v3, ClickThrough has been pushed to 
WiX v4.  Lots of good ideas in there that just aren't baked enough yet 
to be fully useful.

Rob Series wrote:
 Thanks to Neil for his comments. I was actually asking about both Click
 Through and Click Once. Unfortunately our server runs Apache, so I don't
 think I can use Click Once and it looks like its a bit premature to move to
 Click Through. For the moment I think we will stay with our home grown
 solutions and do a custom MSI file for the 'enterprise' users at each major
 update.
 Rob
 --
 Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
 -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
 -Strategies to boost innovation and cut costs with open source participation
 -Receive a $600 discount off the registration fee with the source code: SFAD
 http://p.sf.net/sfu/XcvMzF8H
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] can I expect that a ServiceControl ... / entry without the Remove attribte specified just handles start/stop behavior of an existing service and does not try and install and/or remov

2009-03-18 Thread Rob Mensching
Yes, should work.  Have you found that it does not?

Robert O'Brien wrote:
 can I expect that a ServiceControl Id=BtsSvc 
 Name=BTSSvc$BizTalkServerApplication Start=both Stop=both Wait=no / 
 entry without the Remove attribte specified just handles start/stop behavior 
 of an existing service and does not try and install and/or remove it?

 --
 Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
 -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
 -Strategies to boost innovation and cut costs with open source participation
 -Receive a $600 discount off the registration fee with the source code: SFAD
 http://p.sf.net/sfu/XcvMzF8H
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Weird ICE61

2009-03-18 Thread Alex Ivanoff
Ok, where do I file the bug? Or you will do it?


-Original Message-
From: Rob Mensching [mailto:r...@wixtoolset.org] 
Sent: Wednesday, March 18, 2009 16:05
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Weird ICE61

Interesting, the ICE messages are actually from the Windows Installer 
team not us.  It looks like they have bug here.

Alex Ivanoff wrote:
 I have the following code

 UpgradeVersion Minimum=1.0.0.0
 IncludeMinimum=yes
 Maximum=1.3.40318.0
 IncludeMaximum=no
 Language=1033
 Property=UPGRADEFOUND /

 that results in ICE61

 error LGHT0204: ICE61: Upgrade.VersionMax 1.3.40318.0 format is wrong

 If I change 1.3.40318.0 to 1.3.32768.0 I still get an error, but if I
 change it to 1.3.32767.0 the error goes away. Looks like WiX has a bug
 in version parsing (it uses Int16 instead of UInt16).



--
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] votive causing massive pauses in Visual Studio

2009-03-18 Thread Adam Langley
Aha! Absolutely:

WiX/Votive: 3.0.4721.0
Visual Studio 2008 SP1
Windows XP SP3 and Windows Vista SP1

Also, we don't have any C++ projects in the solution - and my machine (Vista 
SP1/VS2008SP2/Wix 4207) doesn't exhibit these problems (they still had the 
problem before they upgraded from this version)...


Adam Langley
Senior Developer
Tel: +64 9 486 9010
www.winscribe.com
 
 


-Original Message-
From: Phil Sayers [mailto:p...@cds-am.net] 
Sent: Thursday, 19 March 2009 1:29 a.m.
To: 'General discussion for Windows Installer XML toolset.'
Subject: Re: [WiX-users] votive causing massive pauses in Visual Studio

I don't have a solution for you, but I know that the smarter people here
will want to know the versions of the tools you are using.
 
[1]wix/votive
[2]visual studio edition  service pack level.
[3]operating system service pack level.

-Original Message-
From: Adam Langley [mailto:alang...@winscribe.com] 
Sent: Tuesday, March 17, 2009 5:17 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] votive causing massive pauses in Visual Studio

Hi,

We are using WiX in solutions with 15-20 projects, including 4 WiX projects.
On 2 of our machines, one is XP and one is Vista32, Visual Studio hogs 50%
of the CPU for about 4 minutes after startup, then on the Vista machine the
text editor pauses for about a second on every operation (in _any_ file, C#,
Xml etc) such as keypresses and mouse clicks.
Unloading the WiX projects fixes the key-press pause, and uninstalling WiX
(Votive) fixes everything else...

Has anyone else experienced this problem?

Adam Langley
Senior Developer
Tel: +64 9 486 9010
www.winscribe.com
 
 




--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



[WiX-users] Getting ICE20 errors (not found in 'InstallUI/AdminUISequence Sequence Table

2009-03-18 Thread David Bartmess
I'm getting the following errors from the code below. How can I get rid of 
these errors?

Thanks for any help!

UI
. . .
  Property Id=ErrorDialog Value=ErrorDialog /
  Property Id=FatalErrorDialog Value=FatalErrorDialog/
  Property Id=DefaultUIFont Value=WixUI_Font_Normal /

  DialogRef Id=ErrorDialog /
  DialogRef Id=FatalErrorDialog /
  DialogRef Id=FilesInUse /
  DialogRef Id=ProgressDialog /
  DialogRef Id=UserExitDialog /
. . .
/UI 


C:\Documents and Settings\david.bartmess\Local 
Settings\Temp\guauj4dr\MaestroClient.msi(0,0): error LGHT0204: ICE20: 
FatalError dialog/action not found in 'InstallUISequence' Sequence Table.

C:\Documents and Settings\david.bartmess\Local 
Settings\Temp\guauj4dr\MaestroClient.msi(0,0): error LGHT0204: ICE20: 
FatalError dialog/action not found in 'AdminUISequence' Sequence Table.

C:\Documents and Settings\david.bartmess\Local 
Settings\Temp\guauj4dr\MaestroClient.msi(0,0): error LGHT0204: ICE20: UserExit 
dialog/action not found in 'InstallUISequence' Sequence Table.

C:\Documents and Settings\david.bartmess\Local 
Settings\Temp\guauj4dr\MaestroClient.msi(0,0): error LGHT0204: ICE20: UserExit 
dialog/action not found in 'AdminUISequence' Sequence Table.

 

David Bartmess

Wall Street On Demand 

david.bartm...@wallst.com mailto:david.bartm...@wallst.com 

direct: 303.417. x585

cell: 303.883-9117

fax: 303.444.2586


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Weird ICE61

2009-03-18 Thread Rob Mensching
Interesting, the ICE messages are actually from the Windows Installer 
team not us.  It looks like they have bug here.

Alex Ivanoff wrote:
 I have the following code

 UpgradeVersion Minimum=1.0.0.0
 IncludeMinimum=yes
 Maximum=1.3.40318.0
 IncludeMaximum=no
 Language=1033
 Property=UPGRADEFOUND /

 that results in ICE61

 error LGHT0204: ICE61: Upgrade.VersionMax 1.3.40318.0 format is wrong

 If I change 1.3.40318.0 to 1.3.32768.0 I still get an error, but if I
 change it to 1.3.32767.0 the error goes away. Looks like WiX has a bug
 in version parsing (it uses Int16 instead of UInt16).

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Weird ICE61

2009-03-18 Thread Rob Mensching
Try contacting the Windows Installer team via their blog.

Alex Ivanoff wrote:
 Ok, where do I file the bug? Or you will do it?


 -Original Message-
 From: Rob Mensching [mailto:r...@wixtoolset.org]
 Sent: Wednesday, March 18, 2009 16:05
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Weird ICE61

 Interesting, the ICE messages are actually from the Windows Installer
 team not us.  It looks like they have bug here.

 Alex Ivanoff wrote:
   
 I have the following code

 UpgradeVersion Minimum=1.0.0.0
 IncludeMinimum=yes
 Maximum=1.3.40318.0
 IncludeMaximum=no
 Language=1033
 Property=UPGRADEFOUND /

 that results in ICE61

 error LGHT0204: ICE61: Upgrade.VersionMax 1.3.40318.0 format is wrong

 If I change 1.3.40318.0 to 1.3.32768.0 I still get an error, but if I
 change it to 1.3.32767.0 the error goes away. Looks like WiX has a bug
 in version parsing (it uses Int16 instead of UInt16).


 
 
 --
   
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
 
 are
   
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
 
 and
   
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 
 development
   
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 

 
 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Weird ICE61

2009-03-18 Thread Alex Ivanoff
I would have, if they had contact us link on
http://blogs.msdn.com/Windows_Installer_Team/.


-Original Message-
From: Rob Mensching [mailto:r...@wixtoolset.org] 
Sent: Wednesday, March 18, 2009 16:52
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Weird ICE61

Try contacting the Windows Installer team via their blog.

Alex Ivanoff wrote:
 Ok, where do I file the bug? Or you will do it?


 -Original Message-
 From: Rob Mensching [mailto:r...@wixtoolset.org]
 Sent: Wednesday, March 18, 2009 16:05
 To: General discussion for Windows Installer XML toolset.
 Subject: Re: [WiX-users] Weird ICE61

 Interesting, the ICE messages are actually from the Windows Installer
 team not us.  It looks like they have bug here.

 Alex Ivanoff wrote:
   
 I have the following code

 UpgradeVersion Minimum=1.0.0.0
 IncludeMinimum=yes
 Maximum=1.3.40318.0
 IncludeMaximum=no
 Language=1033
 Property=UPGRADEFOUND /

 that results in ICE61

 error LGHT0204: ICE61: Upgrade.VersionMax 1.3.40318.0 format is wrong

 If I change 1.3.40318.0 to 1.3.32768.0 I still get an error, but if I
 change it to 1.3.32767.0 the error goes away. Looks like WiX has a
bug
 in version parsing (it uses Int16 instead of UInt16).


 


 --
   
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
 
 are
   
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
 
 and
   
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 
 development
   
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users

 



 --
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
 development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users



--
 Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
are
 powering Web 2.0 with engaging, cross-platform capabilities. Quickly
and
 easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
 software that enables intelligent coding and step-through debugging.
 Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
 ___
 WiX-users mailing list
 WiX-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wix-users
   


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to deal with Error 1925 on Win2k8

2009-03-18 Thread Vidya Kukke
Hi,

I am trying to install our product logged in as an Administrator but launching 
the MSI from a non-elevated command-prompt.

I first had to set DisableMsi property to 0 and then I got the following error:-
Error 1925. You do not have sufficient privileges to complete this installation 
for all users of the machine.  Log on as administrator and then retry this 
installation.

Note:- Launching the MSI from a windows explorer or launching the MSI from an 
elevated command-prompt completed successfully.

Why the difference in behavior and what am I missing? Any pointers is much 
appreciated.

Regards,
Vidya
--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Custom dialog during uninstallation

2009-03-18 Thread Jan Bilek
Hello,
My problem is simple: I need to ask user before an uninstallation 
begins, whether he wants to keep or remove user created files (settings, 
database, etc.).
Is it somehow possible to spawn custom dialog during the uninstallation 
even if the InstallUISequence is bypassed?
Is the only way how to accomplish that to display very own dialog from 
Custom action stored in DLL?

Thanks for any help.

JB

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users