[WiX-users] GenericRead doesn't work in FileSharePermission

2008-08-05 Thread Richard Ho (Insight Global)
I try to assign GenericRead in FileSharePermission.  Somehow it doesn't work.  
It would create the acct over the share only.

However GenericAll works fine.  Is it a bug in WIX?

Thanks,
Richard



  
  
  



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Service Install Problem

2008-08-05 Thread MarkZune

It's amazing how many samples I looked at which didn't have that (or I just
missed). That did the trick. Thanks!


cemiles wrote:
> 
> Usually you want to specify domain\account for the Account attribute I
> believe.
> 

-- 
View this message in context: 
http://www.nabble.com/Service-Install-Problem-tp18832907p18833510.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ps:SnapIn

2008-08-05 Thread Christopher Karper
No..  That would be normal.
http://sourceforge.net/tracker/index.php?func=detail&aid=2034934&group_id=105970&atid=642714

You need to add the Module GUID to the file ID.

Wix does a lot of nice things for us, including handling the ID redirection
that occurs with modularization.   When you refer to your simple
Assembly.dll ID, in almost every case Wix will turn that into a properp
merged reference.   But, the binder variables are missing this step right
now, so you need to manually work around by referening the final form.   You
can cut & paste it from orca, or you can use your module's guid to figure it
out yourself.   (I highly suggest the Orca route)

So, don't mess with your file's declaration, just change your binder
variable references.   I would suggest going through the archives for this
group about binder variables.  There are quite a few gotchas involved, and
you can make sure you're installing as you expect if you do the reading.
:-)   Let me know if I can be of any further assistance.

Chris

On Tue, Aug 5, 2008 at 10:55 AM, Cristian Libardo <
[EMAIL PROTECTED]> wrote:

> Thank you. I'm just about to read up on modularization. Do you mean
> something like this?:
>
> 
>
> On Tue, Aug 5, 2008 at 4:45 PM, Christopher Karper <
> [EMAIL PROTECTED]> wrote:
>
> > You're probably facing the same issue I did..  There's currently a bug
> that
> > binder variables need the fully modularized id in merge modules.  I don't
> > know if there's a way to pass this in to SnapIn extension, but you can
> try
> > modularizing the file key yourself as a workaround.
> >
> > Chris
> >
> > On Tue, Aug 5, 2008 at 10:31 AM, Cristian Libardo <
> > [EMAIL PROTECTED]> wrote:
> >
> > > Hi. I've been diving into the amazing world of wix and I just came to
> the
> > > point where I could use some help (newbie alert).
> > >
> > > We have a setup with two solutions. One that builds merge modules. The
> > > other
> > > that picks the previously generated msm:s and creates msi:s.
> > >
> > > My problem occurs when I use the  > > certain
> > > registry values aren't bound as they should somewhere during the
> process.
> > > Using orca I can see that the Version key is
> > > "!(bind.assemblyVersion.MyAssembly.dll)" in both the intermediate msm
> and
> > > the final msi (that value is inserted in the registry when I install).
> > >
> > > I have tried Andy Burgess tips:
> > >
> > >
> >
> http://ajbdeveloper.blogspot.com/2008/01/i-recently-tried-to-create-wix-msi.html
> > >
> > > I've also created a minimal wixproject with the same assembly and this
> > > works
> > > like a charm.
> > >
> > > And an excerpt from the wxs file:
> > > ...
> > >   > > FileSource="$(var.AssemblyRootPath)\$(var.Configuration)\">
> > >
> > >   > > Assembly=".net" KeyPath="yes">
> > >
> > >  
> > >
> > >  
> > > ...
> > >
> > >  Any ideas on what might be the culprit?
> > >  I noticed that the minimal project defines a  while
> the
> > > complete one defines a . At what stage is the version
> > > information supposed to be bound?
> > >
> > > Thanks
> > >
> -
> > > This SF.Net email is sponsored by the Moblin Your Move Developer's
> > > challenge
> > > Build the coolest Linux based applications with Moblin SDK & win great
> > > prizes
> > > Grand prize is a trip for two to an Open Source event anywhere in the
> > world
> > > http://moblin-contest.org/redirect.php?banner_id=100&url=/
> > > ___
> > > WiX-users mailing list
> > > WiX-users@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wix-users
> > >
> > -
> > This SF.Net email is sponsored by the Moblin Your Move Developer's
> > challenge
> > Build the coolest Linux based applications with Moblin SDK & win great
> > prizes
> > Grand prize is a trip for two to an Open Source event anywhere in the
> world
> > http://moblin-contest.org/redirect.php?banner_id=100&url=/
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge

Re: [WiX-users] Service Install Problem

2008-08-05 Thread Chad Miles
Usually you want to specify domain\account for the Account attribute I
believe.

On Tue, Aug 5, 2008 at 10:56 AM, MarkZune <[EMAIL PROTECTED]> wrote:

>
> I'm attempting to install a service and receiving the dreaded "1923" error.
> Along with the service I'm also creating the user that the service will
> "log
> on as" in the same install. I then assign the created account and password
> to my service.
>
> The confusing part (to me) is that if I run the install without assigning
> an
> account and password to the service, the install is successful. I can then
> go in to the SCM after the install and assign the account which was just
> created with the install and the service will start.
>
> I'm using XP and am myself a local admin.
>
> There was a similar sounding post on the mailing list last year, but it
> doesn't appear that it was resolved.
> http://www.nabble.com/Running-Service-under-a-User-Account-tt12879873.html
> Running Service Under a User Account
>
> Below are the specifically involved WIX nodes I'm using (note I removed the
> guid for space reasons):
> ...
> 
> 
>
>
>
>
>CreateUser="yes"
>LogonAsService="yes"
>RemoveOnUninstall="yes"
>Name="ServiceAccount"
>Password="Password0!"
>PasswordNeverExpires="yes"
>UpdateIfExists="yes"
>
>  Domain="$(env.COMPUTERNAME)">
> Id="UsersGroup"/>
>
> Name="ControllerService.exe"
>Vital="yes" KeyPath="yes"
>
>  Source="C:\ControllerService.exe"/>
> Id="InstallTestService" Name="ControllerService"
>Type="ownProcess"
> DisplayName="MarksTestService"
>Start="demand"
> ErrorControl="normal"
>Account="ServiceAccount"
> Password="Password0!"/>
> Id="InstallTestService" Name="ControllerService"
>Remove="uninstall"
> Wait="yes" Stop="both"/>
>
>
>
>
> 
> ...
>
>
> Any help is appreciated.
> Mark
> --
> View this message in context:
> http://www.nabble.com/Service-Install-Problem-tp18832907p18832907.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Service Install Problem

2008-08-05 Thread MarkZune

I'm attempting to install a service and receiving the dreaded "1923" error.
Along with the service I'm also creating the user that the service will "log
on as" in the same install. I then assign the created account and password
to my service.

The confusing part (to me) is that if I run the install without assigning an
account and password to the service, the install is successful. I can then
go in to the SCM after the install and assign the account which was just
created with the install and the service will start.

I'm using XP and am myself a local admin.

There was a similar sounding post on the mailing list last year, but it
doesn't appear that it was resolved.
http://www.nabble.com/Running-Service-under-a-User-Account-tt12879873.html
Running Service Under a User Account 

Below are the specifically involved WIX nodes I'm using (note I removed the
guid for space reasons):
...

















...


Any help is appreciated.
Mark
-- 
View this message in context: 
http://www.nabble.com/Service-Install-Problem-tp18832907p18832907.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ps:SnapIn

2008-08-05 Thread Cristian Libardo
Thank you. I'm just about to read up on modularization. Do you mean
something like this?:

 wrote:

> You're probably facing the same issue I did..  There's currently a bug that
> binder variables need the fully modularized id in merge modules.  I don't
> know if there's a way to pass this in to SnapIn extension, but you can try
> modularizing the file key yourself as a workaround.
>
> Chris
>
> On Tue, Aug 5, 2008 at 10:31 AM, Cristian Libardo <
> [EMAIL PROTECTED]> wrote:
>
> > Hi. I've been diving into the amazing world of wix and I just came to the
> > point where I could use some help (newbie alert).
> >
> > We have a setup with two solutions. One that builds merge modules. The
> > other
> > that picks the previously generated msm:s and creates msi:s.
> >
> > My problem occurs when I use the  > certain
> > registry values aren't bound as they should somewhere during the process.
> > Using orca I can see that the Version key is
> > "!(bind.assemblyVersion.MyAssembly.dll)" in both the intermediate msm and
> > the final msi (that value is inserted in the registry when I install).
> >
> > I have tried Andy Burgess tips:
> >
> >
> http://ajbdeveloper.blogspot.com/2008/01/i-recently-tried-to-create-wix-msi.html
> >
> > I've also created a minimal wixproject with the same assembly and this
> > works
> > like a charm.
> >
> > And an excerpt from the wxs file:
> > ...
> >   > FileSource="$(var.AssemblyRootPath)\$(var.Configuration)\">
> >
> >   > Assembly=".net" KeyPath="yes">
> >
> >  
> >
> >  
> > ...
> >
> >  Any ideas on what might be the culprit?
> >  I noticed that the minimal project defines a  while the
> > complete one defines a . At what stage is the version
> > information supposed to be bound?
> >
> > Thanks
> > -
> > This SF.Net email is sponsored by the Moblin Your Move Developer's
> > challenge
> > Build the coolest Linux based applications with Moblin SDK & win great
> > prizes
> > Grand prize is a trip for two to an Open Source event anywhere in the
> world
> > http://moblin-contest.org/redirect.php?banner_id=100&url=/
> > ___
> > WiX-users mailing list
> > WiX-users@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] ps:SnapIn

2008-08-05 Thread Christopher Karper
You're probably facing the same issue I did..  There's currently a bug that
binder variables need the fully modularized id in merge modules.  I don't
know if there's a way to pass this in to SnapIn extension, but you can try
modularizing the file key yourself as a workaround.

Chris

On Tue, Aug 5, 2008 at 10:31 AM, Cristian Libardo <
[EMAIL PROTECTED]> wrote:

> Hi. I've been diving into the amazing world of wix and I just came to the
> point where I could use some help (newbie alert).
>
> We have a setup with two solutions. One that builds merge modules. The
> other
> that picks the previously generated msm:s and creates msi:s.
>
> My problem occurs when I use the  certain
> registry values aren't bound as they should somewhere during the process.
> Using orca I can see that the Version key is
> "!(bind.assemblyVersion.MyAssembly.dll)" in both the intermediate msm and
> the final msi (that value is inserted in the registry when I install).
>
> I have tried Andy Burgess tips:
>
> http://ajbdeveloper.blogspot.com/2008/01/i-recently-tried-to-create-wix-msi.html
>
> I've also created a minimal wixproject with the same assembly and this
> works
> like a charm.
>
> And an excerpt from the wxs file:
> ...
>   FileSource="$(var.AssemblyRootPath)\$(var.Configuration)\">
>
>   Assembly=".net" KeyPath="yes">
>
>  
>
>  
> ...
>
>  Any ideas on what might be the culprit?
>  I noticed that the minimal project defines a  while the
> complete one defines a . At what stage is the version
> information supposed to be bound?
>
> Thanks
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] ps:SnapIn

2008-08-05 Thread Cristian Libardo
Hi. I've been diving into the amazing world of wix and I just came to the
point where I could use some help (newbie alert).

We have a setup with two solutions. One that builds merge modules. The other
that picks the previously generated msm:s and creates msi:s.

My problem occurs when I use the http://ajbdeveloper.blogspot.com/2008/01/i-recently-tried-to-create-wix-msi.html

I've also created a minimal wixproject with the same assembly and this works
like a charm.

And an excerpt from the wxs file:
...
  

  

  

  
...

 Any ideas on what might be the culprit?
  I noticed that the minimal project defines a  while the
complete one defines a . At what stage is the version
information supposed to be bound?

Thanks
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Using properties in DirectorySearch

2008-08-05 Thread Bob Arnson
Jeff Eldridge wrote:
> Is it possible to use property values in the Path attribute for the 
> DirectorySearch element? 

Yes, at least according to the DrLocator Table doc in the MSI SDK. Is it 
not working as expected?

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



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Font not correct when uninstall from control panel

2008-08-05 Thread Bob Arnson
yixie wrote:
> I think it's the /qb uninstall dialog.
> But I didn't define it in my wix file, so I cannot find it in Orca.
>   

Basic UI is controlled by MSI, not authored in your dialog. I'm not 
aware of any way to control the fonts it uses.

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



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] custom action

2008-08-05 Thread Mike Rerick
Thanks Alex. This is just what I needed.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Alexander
Shevchuk
Sent: Monday, August 04, 2008 1:46 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] custom action

See http://msdn.microsoft.com/en-us/library/aa371254(VS.85).aspx for options
on return value from CA.  Perhaps you need IDABORT=3.

Regards,

Alex Shevchuk



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Mike Rerick
Sent: Monday, August 04, 2008 1:03 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] custom action

All,



For a product install, I need to check some attributes of the installed SQL
Server database and also make sure that the SQL Browser service is running.
This needs to be checked before the product is installed.



I have a VB script (I know they are evil, but I this is a requirement I
can't get around) that checks the database for the specific attributes. If
the attributes are not enabled, the script asks the user if they want to
enable them and restart the database service. It also checks the SQL Browser
service to be sure the start mode is Automatic and that it is started. If
not, the user is prompted to change it and start the service. The script
works correctly and does exactly what I need it to do.



If the user does not want to enable the attributes and restart the service
or doesn't want to start the SQL Browser service, the install needs to
terminate immediately. The product can not be installed if the database
attributes are not enabled or if SQL Browser isn't running.



My question:  what MSI variable(s) do I set in the VB script so that the
installer will abort the install as soon as the script is finished? I have
looked in the MSI Properties documentation but can't find any variable that
would do that. I would like this to be treated as an error in the install
and have the installer go directly to the Finish screen.



Thanks for all of your help.



Mike Rerick

Sr. Software Engineer - Professional Services

  http://www.iwsinc.com/>



9200 S.E. Sunnybrook Blvd., Suite 170

Clackamas, OR   97015

Phone: (503) 353-8068Fax: (503) 353-8065





The information contained in this transmission contains potentially
privileged, export controlled and/or confidential information of Imageware
Systems, Inc. or its customers or partners.  It is intended only to be read
by the person(s) named above and for no other purpose.  You are hereby
notified that any dissemination, distribution, duplication of this
communication or use of its contents for any purpose not authorized
expressly by Imageware Systems, Inc. is strictly prohibited and could lead
to both civil and/or criminal penalties.  If you are not the intended
recipient, you are prohibited to review the contents herein and please
contact the sender by reply e-mail and destroy all copies of the original
message.  To reply to our e-mail administrator directly, please send an
e-mail to [EMAIL PROTECTED]


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great
prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


The information contained in this transmission contains potentially
privileged, export controlled and/or confidential information of Imageware
Systems, Inc. or its customers or partners.  It is intended only to be read
by the person(s) named above and for no other purpose.  You are hereby
notified that any dissemination, distribution, duplication of this
communication or use of its contents for any purpose not authorized
expressly by Imageware Systems, Inc. is strictly prohibited and could lead
to both civil and/or criminal penalties.  If you are not the intended
recipient, you are prohibited to review the contents herein and please
contact the sender by reply e-mail and destroy all copies of the original
message.  To reply to our e-mail administrator directly, please send an
e-mail to [EMAIL PROTECTED]
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Using properties in DirectorySearch

2008-08-05 Thread Jeff Eldridge
Hi,

Is it possible to use property values in the Path attribute for the 
DirectorySearch element? E.g.



  

  

TARGETDIR is set via a CustomAction sequenced before CostInitialize.

Thanks,
Jeff


About Microsoft Ireland: www.microsoft.com/ireland
Microsoft Ireland Operations Limited. A company incorporated and registered in 
Ireland number 256796.
Microsoft Ireland Research. A company incorporated and registered in Ireland 
number 342235.
Registered office 70 Sir John Rogerson's Quay, Dublin 2, Ireland
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] CustomAction does not work

2008-08-05 Thread Eitan Behar
Try running the script from the command line to debug it:


Dim fso, dest, src
Set fso = CreateObject("Scripting.FileSystemObject")
dest = Session.Property("C:\InstallDir")
src = Session.Property("C:\SourceDir")
fso.CopyFolder src, dest




On Tue, Aug 5, 2008 at 1:06 PM, Rohit Lodha
<[EMAIL PROTECTED]>wrote:

> Eitan Behar wrote:
> > Hi Rohit,
> > I suggest you to print (echo) the values for INSTALLDIR and SOURCEDIR and
> > try to run the script directly from the command shell, this will give you
> > exactly the error during the copy operation.
> > Reasons could be: target folder already exists, it's read only, source
> not
> > found, etc...
> > Regards,
> > Eitan
> >
> >
> I did and the values are okay.
>
> Is the installdir readonly? anything with privileges? I am on vista.
> > On Tue, Aug 5, 2008 at 8:24 AM, Rohit Lodha
> > <[EMAIL PROTECTED]>wrote:
> >
> >
> >>  
> >>  
> >>
> >>
> >>  
> >>  
> >>  Not
> >> Installed
> >>
> >>
> >> This fails on fso.CopyFolder
> >>
> >> Any Idea, Why?
> >>
> >> Regards,
> >> Rohit
> >>
> >>
> -
> >> This SF.Net email is sponsored by the Moblin Your Move Developer's
> >> challenge
> >> Build the coolest Linux based applications with Moblin SDK & win great
> >> prizes
> >> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> >> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> >> ___
> >> WiX-users mailing list
> >> WiX-users@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wix-users
> >>
> >>
> >
> >
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Font not correct when uninstall from control panel

2008-08-05 Thread yixie

I think it's the /qb uninstall dialog.
But I didn't define it in my wix file, so I cannot find it in Orca.


Pat Higgins wrote:
> 
> No I couldn't be sure but if you look at the dialog in Orca or some sort
> of MSIPreviewer & get the dialog name, then go to the Control table & sort
> the Dialog_ column, then look for that Dialog name, all the strings being
> displayed in the dialog should be there.
> If its not, I'm not sure what else I can say
> sorry
> 
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of yixie
> Sent: 05 August 2008 10:54
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Font not correct when uninstall from control
> panel
> 
> 
> Thanks for the reply.
> Do you know the control's name?
> I searched in orca, but cannot find string anywhere.
> 
> 
> 
> Pat Higgins wrote:
>>
>> I could be wrong but without looking at your MSI, here goes.
>>
>> The strings you're seeing are probably in the Control table; so you might
>> see something like
>> {\WixUI_Font_Bigger}this is my text being displayed
>> If you have something like that, you can remove or replace the
>> {\WixUI_Font_Bigger} with something else but the something else will have
>> to already
>> exist in TextStyle table
>>
>> The font being used is probably defined in TextStyle table
>> Facename is the font so that should be easy to change I guess, but it
>> would change it everywhere.
>> The Stylebits I think will control bold/Italic etc but I've never changed
>> that before directly in an MSI so its only a guess but its someplace to
>> start.
>>
>>
>> All of this is defined either in your code or its part of the standard
>> WiX
>> that's used when building, I guess you'll need to change it there for
>> your
>> MSI to be as you want it when generated.
>>
>>
>>
>>
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED] On Behalf Of yixie
>> Sent: 05 August 2008 06:56
>> To: wix-users@lists.sourceforge.net
>> Subject: Re: [WiX-users] Font not correct when uninstall from control
>> panel
>>
>>
>> Anybody know how to control this?
>> I checked the msi with orca's "dialog preview", but cannot find one
>> corresponding to "/qb" uninstall.
>>
>>
>> yixie wrote:
>>>
>>> I've tried to set "", but seems it won't
>>> affect.
>>>
>>>
>>> yixie wrote:

  http://www.nabble.com/file/p18088307/UninstallFont.jpg

 Hi,

 My msi behave werid when uninstall from control panel.
 The font for the remained time is inclined, while other product does
 not.

 Anybody know which font is used by this dialog?

 Thanks!

>>>
>>>
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18824955.html
>> Sent from the wix-users mailing list archive at Nabble.com.
>>
>>
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>> challenge
>> Build the coolest Linux based applications with Moblin SDK & win great
>> prizes
>> Grand prize is a trip for two to an Open Source event anywhere in the
>> world
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
>> About Microsoft Ireland:  www.microsoft.com/ireland
>> Microsoft Ireland Operations Limited. A company incorporated and
>> registered in Ireland number 256796.
>> Microsoft Ireland Research. A company incorporated and registered in
>> Ireland number 342235.
>> Registered office 70 Sir John Rogerson's Quay, Dublin 2, Ireland
>>
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>> challenge
>> Build the coolest Linux based applications with Moblin SDK & win great
>> prizes
>> Grand prize is a trip for two to an Open Source event anywhere in the
>> world
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
> 
> --
> View this message in context:
> http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18827936.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> 
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> 

Re: [WiX-users] Font not correct when uninstall from control panel

2008-08-05 Thread Pat Higgins
No I couldn't be sure but if you look at the dialog in Orca or some sort of 
MSIPreviewer & get the dialog name, then go to the Control table & sort the 
Dialog_ column, then look for that Dialog name, all the strings being displayed 
in the dialog should be there.
If its not, I'm not sure what else I can say
sorry



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of yixie
Sent: 05 August 2008 10:54
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Font not correct when uninstall from control panel


Thanks for the reply.
Do you know the control's name?
I searched in orca, but cannot find string anywhere.



Pat Higgins wrote:
>
> I could be wrong but without looking at your MSI, here goes.
>
> The strings you're seeing are probably in the Control table; so you might
> see something like
> {\WixUI_Font_Bigger}this is my text being displayed
> If you have something like that, you can remove or replace the
> {\WixUI_Font_Bigger} with something else but the something else will have
> to already
> exist in TextStyle table
>
> The font being used is probably defined in TextStyle table
> Facename is the font so that should be easy to change I guess, but it
> would change it everywhere.
> The Stylebits I think will control bold/Italic etc but I've never changed
> that before directly in an MSI so its only a guess but its someplace to
> start.
>
>
> All of this is defined either in your code or its part of the standard WiX
> that's used when building, I guess you'll need to change it there for your
> MSI to be as you want it when generated.
>
>
>
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of yixie
> Sent: 05 August 2008 06:56
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Font not correct when uninstall from control
> panel
>
>
> Anybody know how to control this?
> I checked the msi with orca's "dialog preview", but cannot find one
> corresponding to "/qb" uninstall.
>
>
> yixie wrote:
>>
>> I've tried to set "", but seems it won't
>> affect.
>>
>>
>> yixie wrote:
>>>
>>>  http://www.nabble.com/file/p18088307/UninstallFont.jpg
>>>
>>> Hi,
>>>
>>> My msi behave werid when uninstall from control panel.
>>> The font for the remained time is inclined, while other product does
>>> not.
>>>
>>> Anybody know which font is used by this dialog?
>>>
>>> Thanks!
>>>
>>
>>
>
> --
> View this message in context:
> http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18824955.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> About Microsoft Ireland:  www.microsoft.com/ireland
> Microsoft Ireland Operations Limited. A company incorporated and
> registered in Ireland number 256796.
> Microsoft Ireland Research. A company incorporated and registered in
> Ireland number 342235.
> Registered office 70 Sir John Rogerson's Quay, Dublin 2, Ireland
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>

--
View this message in context: 
http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18827936.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


About Microsoft Ireland:  www.microsoft.com/ireland
Microsoft Ireland Operations Limited. A company incorporated and registered in 
Ireland number 256796.
Microsoft Ireland Research. A company incorporated and registered in Ireland 
nu

Re: [WiX-users] CustomAction does not work

2008-08-05 Thread Rohit Lodha
Eitan Behar wrote:
> Hi Rohit,
> I suggest you to print (echo) the values for INSTALLDIR and SOURCEDIR and
> try to run the script directly from the command shell, this will give you
> exactly the error during the copy operation.
> Reasons could be: target folder already exists, it's read only, source not
> found, etc...
> Regards,
> Eitan
>
>   
I did and the values are okay.

Is the installdir readonly? anything with privileges? I am on vista.
> On Tue, Aug 5, 2008 at 8:24 AM, Rohit Lodha
> <[EMAIL PROTECTED]>wrote:
>
>   
>>  
>>  
>>
>>
>>  
>>  
>>  Not
>> Installed
>>
>>
>> This fails on fso.CopyFolder
>>
>> Any Idea, Why?
>>
>> Regards,
>> Rohit
>>
>> -
>> This SF.Net email is sponsored by the Moblin Your Move Developer's
>> challenge
>> Build the coolest Linux based applications with Moblin SDK & win great
>> prizes
>> Grand prize is a trip for two to an Open Source event anywhere in the world
>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>> 
>
>   

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Font not correct when uninstall from control panel

2008-08-05 Thread yixie

Thanks for the reply.
Do you know the control's name?
I searched in orca, but cannot find string anywhere.



Pat Higgins wrote:
> 
> I could be wrong but without looking at your MSI, here goes.
> 
> The strings you're seeing are probably in the Control table; so you might
> see something like
> {\WixUI_Font_Bigger}this is my text being displayed
> If you have something like that, you can remove or replace the
> {\WixUI_Font_Bigger} with something else but the something else will have
> to already
> exist in TextStyle table
> 
> The font being used is probably defined in TextStyle table
> Facename is the font so that should be easy to change I guess, but it
> would change it everywhere.
> The Stylebits I think will control bold/Italic etc but I've never changed
> that before directly in an MSI so its only a guess but its someplace to
> start.
> 
> 
> All of this is defined either in your code or its part of the standard WiX
> that's used when building, I guess you'll need to change it there for your
> MSI to be as you want it when generated.
> 
> 
> 
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of yixie
> Sent: 05 August 2008 06:56
> To: wix-users@lists.sourceforge.net
> Subject: Re: [WiX-users] Font not correct when uninstall from control
> panel
> 
> 
> Anybody know how to control this?
> I checked the msi with orca's "dialog preview", but cannot find one
> corresponding to "/qb" uninstall.
> 
> 
> yixie wrote:
>>
>> I've tried to set "", but seems it won't
>> affect.
>>
>>
>> yixie wrote:
>>>
>>>  http://www.nabble.com/file/p18088307/UninstallFont.jpg
>>>
>>> Hi,
>>>
>>> My msi behave werid when uninstall from control panel.
>>> The font for the remained time is inclined, while other product does
>>> not.
>>>
>>> Anybody know which font is used by this dialog?
>>>
>>> Thanks!
>>>
>>
>>
> 
> --
> View this message in context:
> http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18824955.html
> Sent from the wix-users mailing list archive at Nabble.com.
> 
> 
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> About Microsoft Ireland:  www.microsoft.com/ireland
> Microsoft Ireland Operations Limited. A company incorporated and
> registered in Ireland number 256796.
> Microsoft Ireland Research. A company incorporated and registered in
> Ireland number 342235.
> Registered office 70 Sir John Rogerson's Quay, Dublin 2, Ireland
> 
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18827936.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Font not correct when uninstall from control panel

2008-08-05 Thread Pat Higgins
I could be wrong but without looking at your MSI, here goes.

The strings you're seeing are probably in the Control table; so you might see 
something like
{\WixUI_Font_Bigger}this is my text being displayed
If you have something like that, you can remove or replace the 
{\WixUI_Font_Bigger} with something else but the something else will have to 
already
exist in TextStyle table

The font being used is probably defined in TextStyle table
Facename is the font so that should be easy to change I guess, but it would 
change it everywhere.
The Stylebits I think will control bold/Italic etc but I've never changed that 
before directly in an MSI so its only a guess but its someplace to
start.


All of this is defined either in your code or its part of the standard WiX 
that's used when building, I guess you'll need to change it there for your
MSI to be as you want it when generated.




-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of yixie
Sent: 05 August 2008 06:56
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Font not correct when uninstall from control panel


Anybody know how to control this?
I checked the msi with orca's "dialog preview", but cannot find one
corresponding to "/qb" uninstall.


yixie wrote:
>
> I've tried to set "", but seems it won't
> affect.
>
>
> yixie wrote:
>>
>>  http://www.nabble.com/file/p18088307/UninstallFont.jpg
>>
>> Hi,
>>
>> My msi behave werid when uninstall from control panel.
>> The font for the remained time is inclined, while other product does not.
>>
>> Anybody know which font is used by this dialog?
>>
>> Thanks!
>>
>
>

--
View this message in context: 
http://www.nabble.com/Font-not-correct-when-uninstall-from-control-panel-tp18088307p18824955.html
Sent from the wix-users mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


About Microsoft Ireland:  www.microsoft.com/ireland
Microsoft Ireland Operations Limited. A company incorporated and registered in 
Ireland number 256796.
Microsoft Ireland Research. A company incorporated and registered in Ireland 
number 342235.
Registered office 70 Sir John Rogerson's Quay, Dublin 2, Ireland

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] XmlConfig formatting

2008-08-05 Thread Joe Pub
Hi All,

Is there a way from the XmlConfig action to format the XML to put line
breaks after the beginning of XML nodes.  I know this sounds
ridiculous but I have a problem with my app.config file which is a bug
in .NET.  I am updating the dynamic URL for a few web services I have
in app.config using the XmlConfig node. See below for example.  The
value nodes are left out of the app.config and are added during
install, but the problem I have is that after XmlConfig finishes, it
looks like this.


  
http://localhost/Service1.asmx
  
http://localhost/Service2.asmx
  
http://localhost/Service3.asmx


As you can see the  is on the same line as the value node,
which in Xml standards it totally fine, but when the application
launches, it throws an exception stating 'Unrecognized element
'setting'.  Putting a carriage return after the  solves the
problem which is think is ludicrous on .NET's part.

Thanks

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] updating with a different account? [solved->bug]

2008-08-05 Thread Eitan Behar
Hi Mattias,

This is a Windows Installer issue. If you are doing a minor upgrade, you
must keep the same msi file name:

See:
http://helpnet.acresso.com/robo/projects/installshield12helplib/MajorMinorSmall.htm

Rgrds,

Eitan



On Tue, Aug 5, 2008 at 11:38 AM, Mattias Åslund <[EMAIL PROTECTED]> wrote:

> Thanks for the suggestion Eitan!
>
> At first I thought it didn't work - but it actually does!
>
> There seems to be a bug in WiX 3 (or Windows Installer). If the new msi has
> a different filename than the old one, it fails to find the new package
> during the install process. It logs the old filename in the log if I
> include
> "/L*V". As long as I keep the same names it works though, so for now I'm a
> happy camper!
>
> Is there a more appropriate place to discuss the error than posting
> extensive logs in this mailing list?
>
> /Mattias
>
> >Are you using the property ALLUSERS=1 ?
> >This property will let you do a system-level install instead of per-user.
> >
> >Rgrds,
> >
> >Eitan
>
>
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] updating with a different account? [solved->bug]

2008-08-05 Thread Mattias Åslund
Thanks for the suggestion Eitan!

At first I thought it didn't work - but it actually does!

There seems to be a bug in WiX 3 (or Windows Installer). If the new msi has
a different filename than the old one, it fails to find the new package
during the install process. It logs the old filename in the log if I include
"/L*V". As long as I keep the same names it works though, so for now I'm a
happy camper!

Is there a more appropriate place to discuss the error than posting
extensive logs in this mailing list?

/Mattias

>Are you using the property ALLUSERS=1 ?
>This property will let you do a system-level install instead of per-user.
>
>Rgrds,
>
>Eitan


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to ignore selected ICE errors or warnings duringcompilation

2008-08-05 Thread John Hall
> I just started using WIX build 3.0.2420.0,  (I was using 
> 3.0.1502.0).  When Light.exe runs it performs the ICE validations.
> Some of those, I want to ignore.  However, I have not been 
> able to figure out how to do so.

> I tried the following SW command line parms for Light.exe, 
> but they either caused their own errors or did nothing.  Some 
> of the errors say the parm should look like "-sw6".
> -sw
> -sw0204
> -swLGHT0204
> -sw80
> -swICE80
> All of the above with the values in angle brackets.

I think you want the -sice argument to suppress ICE warnings, something
like -sice:ICE80 in your case.

Regards,
John

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users