Re: [WiX-users] is it possible to disable user uninstall while still enable major upgrade?

2009-08-03 Thread Lian Jiang
Thanks Bob for reply.

By design, it is ok for the privileged user to hack to uninstall my app (e.g. 
change registry, delete files). However, I don't want my MSI to be used to 
uninstall the app.

Is it possible to disable uninstallation in my msi to achieve below goals?

1. A user right clicks my application item in Add/Remove programs, he 
can only see repair option, no remove option.

2. A user cannot uninstall my application by using "msiexec /x my.msi 
/q".


Thanks
Lian

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com]
Sent: Monday, August 03, 2009 6:24 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] is it possible to disable user uninstall while still 
enable major upgrade?

Lian Jiang wrote:
> I agree it sounds like a strange requirement for most projects which I didn't 
> even believe at the beginning. But it is legitimate for my project due to 
> some business reason...
>
> Can this be done technically?
>

Users already have to elevate to do the uninstall; once they have admin
privs, they can do anything they want to the machine (OS components
excepted).

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



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Env variables don't get deleted

2009-08-03 Thread sandun css
I don't get this problem always. I installed and uninstalled the msi
multiple times without any problem.

But after few attempts, I noticed that the env variable had not got removed.

Might this be a problem with WindowsInstaller ?

On Fri, Jul 3, 2009 at 2:57 PM, sandun css  wrote:

> This is my code,
>
>
> <
> DirectoryRef Id="Installdir">
>
> 
>
> <
> Environment Id='test' Name='test' Action='set' Part='all' Value='
> [INSTALLDIR]' System='yes' Permanent='no'/>
>
>  Component>
>
>  DirectoryRef>
>
> Due to some reason, that directory also not get deleted. Does 'keypath'
> value has some impact on this?
>
>
>
> Thanks,
>
> Sandun
>
>
> On Thu, Jul 2, 2009 at 8:44 PM, Alex Shevchuk  wrote:
>
>> My understanding of original problem is that environment variables are
>> created on install, but not deleted on uninstall.
>> Action="remove" must be used when environment variable needs to be deleted
>> *on install*.
>> As Rob already mentioned, there is nothing wrong with  tag
>> itself.  Problem is somewhere outside.  If component is not made
>> permanent,
>> another thing to look for is any condition on component or
>>  in .  Without seeing
>> more
>> of original wxs we are just guessing here.
>>
>> Alex
>>
>>
>> -Original Message-
>> From: David Bartmess [mailto:david.bartm...@wallst.com]
>> Sent: Thursday, July 02, 2009 8:00 AM
>> To: 'General discussion for Windows Installer XML toolset.'
>> Subject: Re: [WiX-users] Env variables don't get deleted
>>
>> For what it's worth, here's the text from the schema description. Pay
>> attention to the description of the remove action
>>
>> Specfies whether the environmental variable should be created, set or
>> removed when the parent component is installed. This attribute's value
>> must
>> be one of the following:
>>
>> create
>>Creates the environment variable if it does not exist, then set it
>> during installation. This has no effect on the value of the environment
>> variable if it already exists.
>>
>> set
>>Creates the environment variable if it does not exist, and then set it
>> during installation. If the environment variable exists, set it during the
>> installation.
>>
>> remove
>>Removes the environment variable during an installation. The installer
>> only removes an environment variable during an installation if the name
>> and
>> value of the variable match the entries in the Name and Value fields of
>> the
>> Environment table. If you want to remove an environment variable,
>> regardless
>> of its value, use the '!' syntax, and leave the Value field empty.
>>
>> -Original Message-
>> From: sandun css [mailto:sandun...@gmail.com]
>> Sent: Thursday, July 02, 2009 5:27 AM
>> To: General discussion for Windows Installer XML toolset.
>> Subject: Re: [WiX-users] Env variables don't get deleted
>>
>> No Rob. Those don't apply.
>>
>> On Thu, Jul 2, 2009 at 11:56 AM, Rob Hamflett  wrote:
>>
>> > Setting Permanent="yes" on the Component or forgetting to give it a
>> > GUID would make the env var change permanent.  Do either of these
>> > apply?
>> >
>> > Rob
>> >
>> > sandun css wrote:
>> > > Hi,
>> > >
>> > > I set few env variables from my msi. But they don't get deleted when
>> > > I uninstall them. This is my code,
>> > >
>> > >   > > > Value='[INSTALLDIR]etc\middleware.cfg' System='yes' Permanent='no'/>
>> > > What can be the problem?
>> > >
>> > > Thanks,
>> > > Sandun
>> > >
>> > --
>> > 
>> >
>> >
>> >
>> > --
>> >  ___
>> > WiX-users mailing list
>> > WiX-users@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wix-users
>> >
>>
>> 
>> --
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
>> 
>> --
>> ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>>
>>
>> --
>>  ___
>> WiX-users mailing list
>> WiX-users@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wix-users
>>
>
>
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users 

[WiX-users] Service failed to start using WiX3.0

2009-08-03 Thread bonn deng
Hello, everyone!
I'm a totally newbie in WiX. I was using WiX3.0 and wanted to install a
windows service through it, I did as the guide says and I can install the
service but I can't start it on install. The message I got is "Service
failed to start. Verify that you have sufficient privileges to start system
services." and I'm using one administrator account in Windows XP.
Here's my code, any suggestion? I'd appreciate it!
{{{

  





  

}}}
Thanks in advance!

best regards,
Bonn
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Wix 3.5.0731.0 is missing the VS2010 Integration

2009-08-03 Thread Bob Arnson
John H. Bergman (XPedient Technologies) wrote:
> The latest build, and the previous one are missing the VS2010 integration.  
> Could one of the Wix Developers contact me offline so I can help with this?
>   

There's an open bug. You're welcome to dig in, but I know it's on the 
radar of one of the Votive developers.

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



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] is it possible to disable user uninstall while still enable major upgrade?

2009-08-03 Thread Bob Arnson
Lian Jiang wrote:
> I agree it sounds like a strange requirement for most projects which I didn't 
> even believe at the beginning. But it is legitimate for my project due to 
> some business reason...
>
> Can this be done technically?
>   

Users already have to elevate to do the uninstall; once they have admin 
privs, they can do anything they want to the machine (OS components 
excepted).

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



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] is it possible to disable user uninstall while still enable major upgrade?

2009-08-03 Thread Lian Jiang
Any idea? Thanks.

-Original Message-
From: Lian Jiang [mailto:lji...@microsoft.com]
Sent: Sunday, August 02, 2009 1:17 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: [WiX-users] is it possible to disable user uninstall while still 
enable major upgrade?

Hi,

I have an msi which support uninstallation and major upgrade. Now I want to 
update it for below purposes:


(1)Users cannot use this msi to uninstall, which means:

(1.1)  A user right clicks my application item in Add/Remove programs, 
he can only see repair option, no remove option.

(1.2)  A user cannot uninstall my application by using "msiexec /x 
my.msi /q".

(1.3)  A user cannot use remove button in MaintainanceType dialog to 
uninstall. This button must be hidden or disabled.

(2)Major upgrade still work, which means the msi can uninstall a previous 
version and install a new version.

Is this possible?

Appreciate your hint.


Thanks
Lian


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Install pfx Certificate

2009-08-03 Thread Reese
Hello, this is a follow up. So I've determined that while the installation
works our application doesn't run correctly because it needs the private key
(hence the .pfx file).

If anyone has had a successful installation using .pfx files I'd really
appreciate some help, is this a possible bug in the IIS custom action?
Thanks

Reese

On Mon, Aug 3, 2009 at 1:45 PM, quattro004  wrote:

>
> Hi Phil,
>  I'm using the IIS Extension and compiling via VS to gen the MSI. It looks
> to be a deferred action. What's interesting is that I determined (based on
> a
> suggestion to someone else's similar problem) that if I manually import the
> .pfx file and export to a .cer (using the DER option) and use that in my
> install, it works. I'm currently determining if the end result (after
> installation) is the same.
>
> Reese
>
> On Mon, Aug 3, 2009 at 11:45 AM, Wilson, Phil (via Nabble) <
> ml-user+58337-888457...@n2.nabble.com
> 
> >
> > wrote:
>
> > Those errors are all Access Denied, so this looks like something to do
> with
> > how the code is running. Deferred? Immediate? Impersonated?
> >
> > Phil Wilson
> >
> > -Original Message-
> > From: quattro004 [mailto:[hidden email]<
> http://n2.nabble.com/user/SendEmail.jtp?type=node&node=3379702&i=0>]
> >
> > Sent: Monday, August 03, 2009 11:36 AM
> > To: [hidden email]<
> http://n2.nabble.com/user/SendEmail.jtp?type=node&node=3379702&i=1>
> > Subject: Re: [WiX-users] Install pfx Certificate
> >
> >
> > I'm using Wix 3.0.5419 and tried the latest build as well with no success
> > either.
> >
> >
> > quattro004 wrote:
> > >
> > > Hi, I'm having trouble installing a pfx certificate, I can install a
> .cer
> >
> > > certificate and am unsure why the .pfx doesn't work. Any help is much
> > > appreciated. Thanks.
> > >
> > > Here is my error message:
> > > InstallCertificates:  Error 0x80070005: Failed to open PFX file.
> > > InstallCertificates:  Error 0x80070005: Failed to get SHA1 hash of
> > > certificate.
> > > InstallCertificates:  Error 0x80070005: Failed to resolve certificate:
> > > AIQServiceAuthentication
> > > Action ended 11:14:51: InstallCertificates. Return value 3.
> > >
> >
> --
> >
> > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> > > 30-Day
> > > trial. Simplify your report design, integration and deployment - and
> > focus
> > > on
> > > what you do best, core application coding. Discover what's new with
> > > Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> > > ___
> > > WiX-users mailing list
> > > [hidden email]<
> http://n2.nabble.com/user/SendEmail.jtp?type=node&node=3379702&i=2>
> > > https://lists.sourceforge.net/lists/listinfo/wix-users
> > >
> > >
> >
> > --
> > View this message in context:
> > http://n2.nabble.com/Install-pfx-Certificate-tp3379627p3379655.html
> > Sent from the wix-users mailing list archive at Nabble.com.
> >
> >
> --
> >
> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day
> >
> > trial. Simplify your report design, integration and deployment - and
> focus
> > on
> > what you do best, core application coding. Discover what's new with
> > Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> > ___
> > WiX-users mailing list
> > [hidden email]<
> http://n2.nabble.com/user/SendEmail.jtp?type=node&node=3379702&i=3>
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> >
> >
> >
> --
> >
> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day
> >
> > trial. Simplify your report design, integration and deployment - and
> focus
> > on
> > what you do best, core application coding. Discover what's new with
> > Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> > ___
> > WiX-users mailing list
> > [hidden email]<
> http://n2.nabble.com/user/SendEmail.jtp?type=node&node=3379702&i=4>
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> >
> > --
> >  View message @
> > http://n2.nabble.com/Install-pfx-Certificate-tp3379627p3379702.html
> > To unsubscribe from Re: Install pfx Certificate, click here< (link
> removed) >.
> >
> >
> >
>
> --
> View this message in context:
> http://n2.nabble.com/Install-pfx-Certificate-tp3379627p3380305.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
> --
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
> trial. Simplify your report design, integration and deployment - and focus
> on
> what you do best, core application coding. Discover what's new with
> Crystal Reports now.  http://p.sf.

[WiX-users] Wix 3.5.0731.0 is missing the VS2010 Integration

2009-08-03 Thread John H. Bergman (XPedient Technologies)
The latest build, and the previous one are missing the VS2010 integration.  
Could one of the Wix Developers contact me offline so I can help with this?

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Install pfx Certificate

2009-08-03 Thread quattro004

Hi Phil,
  I'm using the IIS Extension and compiling via VS to gen the MSI. It looks
to be a deferred action. What's interesting is that I determined (based on a
suggestion to someone else's similar problem) that if I manually import the
.pfx file and export to a .cer (using the DER option) and use that in my
install, it works. I'm currently determining if the end result (after
installation) is the same.

Reese

On Mon, Aug 3, 2009 at 11:45 AM, Wilson, Phil (via Nabble) <
ml-user+58337-888457...@n2.nabble.com
> wrote:

> Those errors are all Access Denied, so this looks like something to do with
> how the code is running. Deferred? Immediate? Impersonated?
>
> Phil Wilson
>
> -Original Message-
> From: quattro004 [mailto:[hidden 
> email]]
>
> Sent: Monday, August 03, 2009 11:36 AM
> To: [hidden 
> email]
> Subject: Re: [WiX-users] Install pfx Certificate
>
>
> I'm using Wix 3.0.5419 and tried the latest build as well with no success
> either.
>
>
> quattro004 wrote:
> >
> > Hi, I'm having trouble installing a pfx certificate, I can install a .cer
>
> > certificate and am unsure why the .pfx doesn't work. Any help is much
> > appreciated. Thanks.
> >
> > Here is my error message:
> > InstallCertificates:  Error 0x80070005: Failed to open PFX file.
> > InstallCertificates:  Error 0x80070005: Failed to get SHA1 hash of
> > certificate.
> > InstallCertificates:  Error 0x80070005: Failed to resolve certificate:
> > AIQServiceAuthentication
> > Action ended 11:14:51: InstallCertificates. Return value 3.
> >
> --
>
> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> > 30-Day
> > trial. Simplify your report design, integration and deployment - and
> focus
> > on
> > what you do best, core application coding. Discover what's new with
> > Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> > ___
> > WiX-users mailing list
> > [hidden 
> > email]
> > https://lists.sourceforge.net/lists/listinfo/wix-users
> >
> >
>
> --
> View this message in context:
> http://n2.nabble.com/Install-pfx-Certificate-tp3379627p3379655.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
> --
>
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
>
> trial. Simplify your report design, integration and deployment - and focus
> on
> what you do best, core application coding. Discover what's new with
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> ___
> WiX-users mailing list
> [hidden 
> email]
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
>
> --
>
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
>
> trial. Simplify your report design, integration and deployment - and focus
> on
> what you do best, core application coding. Discover what's new with
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> ___
> WiX-users mailing list
> [hidden 
> email]
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
>
> --
>  View message @
> http://n2.nabble.com/Install-pfx-Certificate-tp3379627p3379702.html
> To unsubscribe from Re: Install pfx Certificate, click here< (link removed) >.
>
>
>

-- 
View this message in context: 
http://n2.nabble.com/Install-pfx-Certificate-tp3379627p3380305.html
Sent from the wix-users mailing list archive at Nabble.com.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to create the installation package, which is able to upgrade

2009-08-03 Thread Neil Sleightholm
This might also help:
http://neilsleightholm.blogspot.com/2009/01/wix-script-for-major-upgrade
s.html

Neil

-Original Message-
From: Yan Sklyarenko [mailto:y...@sitecore.net] 
Sent: 03 August 2009 15:09
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] How to create the installation package, which
is able to upgrade

First of all, I would encourage you to get acquainted with the resources
below:
   - http://msdn.microsoft.com/en-us/library/aa370579(VS.85).aspx and
all descendants - this is essential info about upgrades
   - http://www.joyofsetup.com/2008/12/30/paying-for-upgrades/ - a great
summary from Bob (and comments)
   - the topic "How To: Implement a Major Upgrade In Your Installer" and
"Patch Building" section in wix.chm

Lots of text, I know, but you'd better read and understand it now.
Good luck.

-- Yan

-Original Message-
From: Jiang, Chunyan (GE Healthcare) [mailto:chunyan.ji...@ge.com] 
Sent: Monday, August 03, 2009 4:56 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] How to create the installation package,which is
able to upgrade

Hi Wix-users,
 
I have created the installation package with wix. Now I have a new task
that .msi should be upgradable. It means that the newly built .msi
should be installed without uninstalling the last version, when some
files changed in the package.
 
However, my newly built .msi can not be installed. It will pop up an
error message like, the package has been installed. 
 
How can I make the .msi to be upgradable?
 
 
Best regards,
 
 
Chunyan

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day 
trial. Simplify your report design, integration and deployment - and
focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day 
trial. Simplify your report design, integration and deployment - and
focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Install pfx Certificate

2009-08-03 Thread Wilson, Phil
Those errors are all Access Denied, so this looks like something to do with how 
the code is running. Deferred? Immediate? Impersonated? 

Phil Wilson 

-Original Message-
From: quattro004 [mailto:quattro...@gmail.com] 
Sent: Monday, August 03, 2009 11:36 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Install pfx Certificate


I'm using Wix 3.0.5419 and tried the latest build as well with no success
either.


quattro004 wrote:
> 
> Hi, I'm having trouble installing a pfx certificate, I can install a .cer
> certificate and am unsure why the .pfx doesn't work. Any help is much
> appreciated. Thanks.
> 
> Here is my error message:
> InstallCertificates:  Error 0x80070005: Failed to open PFX file.
> InstallCertificates:  Error 0x80070005: Failed to get SHA1 hash of
> certificate.
> InstallCertificates:  Error 0x80070005: Failed to resolve certificate:
> AIQServiceAuthentication
> Action ended 11:14:51: InstallCertificates. Return value 3.
> --
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day 
> trial. Simplify your report design, integration and deployment - and focus
> on 
> what you do best, core application coding. Discover what's new with 
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> ___
> 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/Install-pfx-Certificate-tp3379627p3379655.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Install pfx Certificate

2009-08-03 Thread Mike Carlson (DEV DIV)
Did you specify the correct Certificate/@PFXPassword attribute?

Also, what build of WiX are you using? It's highly recommended to use WiX 3.0 
RTM, as at least a few cert bugs existed in earlier 3.0 builds that were fixed 
in RTM.

Thanks,
Mike Carlson

-Original Message-
From: Reese [mailto:quattro...@gmail.com]
Sent: Monday, August 03, 2009 11:28 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Install pfx Certificate

Hi, I'm having trouble installing a pfx certificate, I can install a .cer
certificate and am unsure why the .pfx doesn't work. Any help is much
appreciated. Thanks.

Here is my error message:
InstallCertificates:  Error 0x80070005: Failed to open PFX file.
InstallCertificates:  Error 0x80070005: Failed to get SHA1 hash of
certificate.
InstallCertificates:  Error 0x80070005: Failed to resolve certificate:
AIQServiceAuthentication
Action ended 11:14:51: InstallCertificates. Return value 3.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Install pfx Certificate

2009-08-03 Thread quattro004

I'm using Wix 3.0.5419 and tried the latest build as well with no success
either.


quattro004 wrote:
> 
> Hi, I'm having trouble installing a pfx certificate, I can install a .cer
> certificate and am unsure why the .pfx doesn't work. Any help is much
> appreciated. Thanks.
> 
> Here is my error message:
> InstallCertificates:  Error 0x80070005: Failed to open PFX file.
> InstallCertificates:  Error 0x80070005: Failed to get SHA1 hash of
> certificate.
> InstallCertificates:  Error 0x80070005: Failed to resolve certificate:
> AIQServiceAuthentication
> Action ended 11:14:51: InstallCertificates. Return value 3.
> --
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008
> 30-Day 
> trial. Simplify your report design, integration and deployment - and focus
> on 
> what you do best, core application coding. Discover what's new with 
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> ___
> 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/Install-pfx-Certificate-tp3379627p3379655.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Install pfx Certificate

2009-08-03 Thread Reese
Hi, I'm having trouble installing a pfx certificate, I can install a .cer
certificate and am unsure why the .pfx doesn't work. Any help is much
appreciated. Thanks.

Here is my error message:
InstallCertificates:  Error 0x80070005: Failed to open PFX file.
InstallCertificates:  Error 0x80070005: Failed to get SHA1 hash of
certificate.
InstallCertificates:  Error 0x80070005: Failed to resolve certificate:
AIQServiceAuthentication
Action ended 11:14:51: InstallCertificates. Return value 3.
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Error with MFC 9.0 merge module

2009-08-03 Thread Alex Ivanoff
I have the following error when I am trying to use MFC 9.0 merge module
in our install:

Product.wxs(355,0): error LGHT1055: The InstallExecuteSequence table
contains an action 'SxsInstallCA' which cannot be merged from the merge
module 'C:\Program Files (x86)\Common Files\Merge
Modules\Microsoft_VC90_DebugMFC_x86.msm'.  This action is likely
colliding with an action in the database that is being created.  The
colliding action may have been authored in the database or merged in
from another merge module.  If this is a standard action, it is likely
colliding due to a difference in the condition for the action in the
database and merge module.  If this is a custom action, it should only
be declared in the database or one merge module.
Product.wxs(355,0): error LGHT1055: The InstallExecuteSequence table
contains an action 'SxsUninstallCA' which cannot be merged from the
merge module 'C:\Program Files (x86)\Common Files\Merge
Modules\Microsoft_VC90_DebugMFC_x86.msm'.  This action is likely
colliding with an action in the database that is being created.  The
colliding action may have been authored in the database or merged in
from another merge module.  If this is a standard action, it is likely
colliding due to a difference in the condition for the action in the
database and merge module.  If this is a custom action, it should only
be declared in the database or one merge module.

How do I fix it?

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Which elements of version number can be used to detect an upgrade?

2009-08-03 Thread Kim Gybels

> When specifying the Minimum and Maximum values in an UpgradeVersion element, 
> can you specify all four values ... or will 
> it only use the first 3
It will only use the first 3...

- Kim

--

*Kim Gybels
Software Developer
* kim.gyb...@metris.com 
Tel: +32 16 74 01 01
Fax: +32 16 74 01 02



* Metris Europe
* Interleuvenlaan 86
3001 Leuven
Belgium
www.metris.com 




This message and any attachment are privileged, confidential and contain 
private information. If you are not the addressee named above any disclosure, 
reproduction, copying, distribution, or other dissemination or use of this 
communication is prohibited. If you have received this transmission in error, 
please notify the sender immediately and destroy this e-mail. Metris does not 
guarantee that the integrity of this communication has been maintained or that
this communication is free of viruses, interceptions or interference, and shall 
not be liable for the improper or incomplete transmission of the information 
contained in this communication nor for any delay in its receipt or damage to 
your system. Incoming and outgoing email communications may be monitored by 
Metris, as permitted by applicable law and regulations.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] What is wixca.dll?

2009-08-03 Thread Mike Carlson (DEV DIV)
It contains some of the WiX custom actions that, at install-time, do the work 
for most of the elements of the WixUtilExtension.

Many of the other extensions have their own custom action DLLs.

-Original Message-
From: Sunkesula, Srivardhan [mailto:srivardhan.sunkes...@netapp.com]
Sent: Sunday, August 02, 2009 10:17 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] What is wixca.dll?



Hi,

  Can anyone let me know what this wixca.dll is?


Thanks &Regards,
Srivardhan.


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Heat Generated component not being included

2009-08-03 Thread Michael Clark
Thanks, that was it :(


-Original Message-
From: Peter Shirtcliffe [mailto:pshirtcli...@sdl.com] 
Sent: Monday, August 03, 2009 11:23 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] Heat Generated component not being included


 should be  



-Original Message-
From: Michael Clark [mailto:mcl...@fullarmor.com] 
Sent: 03 August 2009 16:17
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Heat Generated component not being included

I have the following fragment generated using Heat

 



http://schemas.microsoft.com/wix/2006/wi";>























































































 

 

in my main .wxs file I have the following

 





 



 

 

I execute 

C: \Light.exe -cultures:null -ext "C:\Program Files (x86)\Windows
Installer XML v3\bin\WixUIExtension.dll" -ext "C:\Program Files
(x86)\Windows Installer XML v3\bin\WixNetFxExtension.dll" -out
"c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\bin\Release\QADropInstaller.msi"
-pdbout "c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\bin\Release\QADropInstaller.wixpdb" -v
obj\Release\QADropInstall.wixobj obj\Release\Doc.wixobj 

 

and I get the following error 

Error  21   Unresolved reference to symbol 'Component:Doc'
in section 'Product:{CF56D65B-BE0D-4719-BEFD-5DC04F7AD7FC}'.
c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\QADropInstall.wxs160
1  Azure Application SDK Installer

 

Can anyone tell me what I'm doing wrong?

 

 

 

 

Release Engineer

mcl...@fullarmor.com   

 

FULLARMOR Corporation

399 Boylston Street

11th Floor

Boston, MA 02116

Phone: 617.896.2243

Fax: 617.556.0221

www.fullarmor.com  

 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day trial. Simplify your report design, integration and deployment -
and focus on what you do best, core application coding. Discover what's
new with Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
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.



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day 
trial. Simplify your report design, integration and deployment - and
focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Heat Generated component not being included

2009-08-03 Thread Peter Shirtcliffe

 should be  



-Original Message-
From: Michael Clark [mailto:mcl...@fullarmor.com] 
Sent: 03 August 2009 16:17
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Heat Generated component not being included

I have the following fragment generated using Heat

 



http://schemas.microsoft.com/wix/2006/wi";>























































































 

 

in my main .wxs file I have the following

 





 



 

 

I execute 

C: \Light.exe -cultures:null -ext "C:\Program Files (x86)\Windows
Installer XML v3\bin\WixUIExtension.dll" -ext "C:\Program Files
(x86)\Windows Installer XML v3\bin\WixNetFxExtension.dll" -out
"c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\bin\Release\QADropInstaller.msi"
-pdbout "c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\bin\Release\QADropInstaller.wixpdb" -v
obj\Release\QADropInstall.wixobj obj\Release\Doc.wixobj 

 

and I get the following error 

Error  21   Unresolved reference to symbol 'Component:Doc'
in section 'Product:{CF56D65B-BE0D-4719-BEFD-5DC04F7AD7FC}'.
c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\QADropInstall.wxs160
1  Azure Application SDK Installer

 

Can anyone tell me what I'm doing wrong?

 

 

 

 

Release Engineer

mcl...@fullarmor.com   

 

FULLARMOR Corporation

399 Boylston Street

11th Floor

Boston, MA 02116

Phone: 617.896.2243

Fax: 617.556.0221

www.fullarmor.com  

 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day trial. Simplify your report design, integration and deployment -
and focus on what you do best, core application coding. Discover what's
new with Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
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.


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Heat Generated component not being included

2009-08-03 Thread Michael Clark
I have the following fragment generated using Heat

 



http://schemas.microsoft.com/wix/2006/wi";>























































































 

 

in my main .wxs file I have the following

 





 



 

 

I execute 

C: \Light.exe -cultures:null -ext "C:\Program Files (x86)\Windows
Installer XML v3\bin\WixUIExtension.dll" -ext "C:\Program Files
(x86)\Windows Installer XML v3\bin\WixNetFxExtension.dll" -out
"c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\bin\Release\QADropInstaller.msi"
-pdbout "c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\bin\Release\QADropInstaller.wixpdb" -v
obj\Release\QADropInstall.wixobj obj\Release\Doc.wixobj 

 

and I get the following error 

Error  21   Unresolved reference to symbol 'Component:Doc'
in section 'Product:{CF56D65B-BE0D-4719-BEFD-5DC04F7AD7FC}'.
c:\source\Azure Applications
SDK\Bespin\QADrop\QADropInstaller\QADropInstall.wxs160
1  Azure Application SDK Installer

 

Can anyone tell me what I'm doing wrong?

 

 

 

 

Release Engineer

mcl...@fullarmor.com   

 

FULLARMOR Corporation

399 Boylston Street

11th Floor

Boston, MA 02116

Phone: 617.896.2243

Fax: 617.556.0221

www.fullarmor.com  

 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] A call to aspnet_regiis -s fails for newlycreatedsite

2009-08-03 Thread Yan Sklyarenko
Thanks, Neil! This indeed turned out to be an acceptable way.

-- Yan


-Original Message-
From: Neil Sleightholm [mailto:n...@x2systems.com] 
Sent: Tuesday, July 28, 2009 8:50 AM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] A call to aspnet_regiis -s fails for
newlycreatedsite

>> However, I've seen the samples like this and I'm not sure it is a
>> flexible solution. You simply hardcode the script maps, but what if
>> newer versions of IIS add some more? Or if there were customizations
on
>> a target machine I'm not aware about? 

Simply add the ones you need, I think this is more flexible but YMMV.

>> Due to the fact that aspnet_regiis does the things, why is it a bad
>> practice to use it? And also, the main question is why it breaks
ASP.NET
>> down being called as a custom action? 

As you have found running exes from custom actions is not reliable, also
you cannot undo the change easily.

I find this solution works reliably so chose to use it, your situation
may be different.

Neil


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day 
trial. Simplify your report design, integration and deployment - and
focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] No way to specify a name for WebApplicationExtension

2009-08-03 Thread Yan Sklyarenko
Hello WiX community,

I've faced with an interesting problem.

IIS7 allows specifying a name for script maps, those you can set by
WebApplicatonExtension element. And moreover, it can distinguish the
script maps by this name only, meaning other attributes can be equal. On
the other hand, WiX table has the WebApplication ID and Extension fields
as a key, which prevents have two mappings to a single extension.

Is this another limitation of IIS7 support in WiX IIsExtension, not
implemented in IIS6 compatibility interface? Does anyone know a kind of
workaround?

Thank you.

-- Yan



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How to create the installation package, which is able to upgrade

2009-08-03 Thread Yan Sklyarenko
First of all, I would encourage you to get acquainted with the resources
below:
   - http://msdn.microsoft.com/en-us/library/aa370579(VS.85).aspx and
all descendants - this is essential info about upgrades
   - http://www.joyofsetup.com/2008/12/30/paying-for-upgrades/ - a great
summary from Bob (and comments)
   - the topic "How To: Implement a Major Upgrade In Your Installer" and
"Patch Building" section in wix.chm

Lots of text, I know, but you'd better read and understand it now.
Good luck.

-- Yan

-Original Message-
From: Jiang, Chunyan (GE Healthcare) [mailto:chunyan.ji...@ge.com] 
Sent: Monday, August 03, 2009 4:56 PM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] How to create the installation package,which is
able to upgrade

Hi Wix-users,
 
I have created the installation package with wix. Now I have a new task
that .msi should be upgradable. It means that the newly built .msi
should be installed without uninstalling the last version, when some
files changed in the package.
 
However, my newly built .msi can not be installed. It will pop up an
error message like, the package has been installed. 
 
How can I make the .msi to be upgradable?
 
 
Best regards,
 
 
Chunyan

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008
30-Day 
trial. Simplify your report design, integration and deployment - and
focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to create the installation package, which is able to upgrade

2009-08-03 Thread Jiang, Chunyan (GE Healthcare)
Hi Wix-users,
 
I have created the installation package with wix. Now I have a new task
that .msi should be upgradable. It means that the newly built .msi
should be installed without uninstalling the last version, when some
files changed in the package.
 
However, my newly built .msi can not be installed. It will pop up an
error message like, the package has been installed. 
 
How can I make the .msi to be upgradable?
 
 
Best regards,
 
 
Chunyan
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Which elements of version number can be used to detect an upgrade?

2009-08-03 Thread Tom Crozier
All -

When specifying the Minimum and Maximum values in an UpgradeVersion element, 
can you specify all four values ... or will it 
only use the first 3?


  



Thanks - TopCat

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] RegisterClassInfo

2009-08-03 Thread Eswari
Hi,

Can any one gives information/example of RegisterClassInfo?

Thanks,


  

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Does XmlConfig works on DCML format?

2009-08-03 Thread Romeo S.

Hi again,

Upon doing some trial and error, I was able to set the value of
Object1.log.debug-level=5 by using this XPath:
//Object[\[]Name="Object1"[\]]/SubObjects/Object[\[]Name="log"[\]]/SubObjects/Object[\[]Name="debug-level"[\]]/value

I wonder if this is the best and easy way to do this? Since I was planning
to do this automatically by setting a property e.g Object1.log.debug-level=5
as XPath and value.

P.S. It seems the "" in the given xml sample was truncated, it has "" in the
whitespaces.

Regards,
Romeo


Romeo S. wrote:
> 
> Hi,
> 
> I want to know if XmlConfig or XmlFile works with DCML format of XML?
> 
> Like:
> 
> 
> 
>   Description 1
>   
>   Obejct1
>   Description for Object 1
>   
>   
>   log
>   Description for Object1's 
> log
>   
>   
>   debug-level
>   Some 
> description...
>   0
>   
>   
>   
>   
>   
> 
> 
> In the sample Xml above, how can I set the value of
> Object1.log.debug-level to e.g. 5? What is the best practice to do this?
> 
> Thanks in advance!
> 
> Regards,
> Romeo
> 

-- 
View this message in context: 
http://n2.nabble.com/Does-XmlConfig-works-on-DCML-format--tp3361177p3376348.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Help: 'Error 26201.Error -2147467259: failed to create SQL database'

2009-08-03 Thread Michael Osmond
John

No worries.  Sorry I could not think of something more useful.

Regards

Michael

-Original Message-
From: John Stevenson-Hoare [mailto:john.stevenson-ho...@ffei.co.uk] 
Sent: Monday, 3 August 2009 5:21 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Help: 'Error 26201.Error -2147467259: failed to create 
SQL database'


Hi Michael,

Thanks for all your help in trying to resolve my issue.

In the end I had to give up on trying to understand the cause. I did try
downloading the source but could not build it with the tools that the make
file says that I need. There were just too many compile errors and too
little time to try to understand why.

In the end our business partner took my SQL scripts and included them
directly in to an InstallShield setup and this now works.

You win some, you lose some!

Regards,
John
-- 
View this message in context: 
http://n2.nabble.com/Help%3A-%27Error-26201.Error--2147467259%3A-failed-to-create-SQL-database%27-tp3314870p3376278.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Help: 'Error 26201.Error -2147467259: failed to create SQL database'

2009-08-03 Thread John Stevenson-Hoare

Hi Michael,

Thanks for all your help in trying to resolve my issue.

In the end I had to give up on trying to understand the cause. I did try
downloading the source but could not build it with the tools that the make
file says that I need. There were just too many compile errors and too
little time to try to understand why.

In the end our business partner took my SQL scripts and included them
directly in to an InstallShield setup and this now works.

You win some, you lose some!

Regards,
John
-- 
View this message in context: 
http://n2.nabble.com/Help%3A-%27Error-26201.Error--2147467259%3A-failed-to-create-SQL-database%27-tp3314870p3376278.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users