[WiX-users] Noel Anderton/DG/Prudential is out of the office.

2010-07-10 Thread Noel Anderton

I will be out of the office starting  07/10/2010 and will not return until
07/25/2010.



--
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Noel Anderton/DG/Prudential is out of the office.

2009-07-25 Thread noel . anderton

I will be out of the office starting  07/25/2009 and will not return until
08/10/2009.

I am attending a training course off site. I will respond to your message
when I return.


--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Noel Anderton/DG/Prudential is out of the office.

2009-04-25 Thread noel . anderton

I will be out of the office starting  04/25/2009 and will not return until
05/03/2009.

I am attending a training course off site. I will respond to your message
when I return.


--
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensign option that enables unlimited
royalty-free distribution of the report engine for externally facing 
server and web deployment.
http://p.sf.net/sfu/businessobjects
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Installing into the GAC

2009-04-17 Thread noel . anderton

We have 2 products that use the same framework version. We have 2 Wix files
that generate 2 MSI's. We are installing the framework dll's, into the GAC
manually and would like to add them to each installer. We want the 2
products dependencies on the GAC installed frame work to be to be
independent of each other. To be able to be both on the same version or on
different versions of the framework dll's.
The behavior we are looking for is if both products are on the same version
of the frame work then the component count will go to 2 and the un-install
of either would leave a version in the a GAC for the other product. If they
are on different versions then we want both versions to be side by side in
the GAC. if we update one then we want the correct version removed from the
GAC and replaced by the latest version..
How do we do this with Wix?
Should the components for the framework dll's have the same Guid?
Are there any other flags that need to be set either in Wix or when
executing the MSI?

Thanks
Noel Anderton


--
Stay on top of everything new and different, both inside and 
around Java (TM) technology - register by April 22, and save
$200 on the JavaOne (SM) conference, June 2-5, 2009, San Francisco.
300 plus technical and hands-on sessions. Register today. 
Use priority code J9JMT32. http://p.sf.net/sfu/p
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Noel Anderton/DG/Prudential is out of the office.

2009-03-05 Thread noel . anderton

I will be out of the office starting  03/05/2009 and will not return until
03/21/2009.

 I will respond to your message when I return.


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


[WiX-users] Noel Anderton/DG/Prudential is out of the office.

2008-12-24 Thread noel . anderton

I will be out of the office starting  12/24/2008 and will not return until
01/05/2009.

 I will respond to your message when I return.


--
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Creating users and setting Permission's

2008-11-09 Thread noel . anderton
Hope this arrives at the correct place, I am not sure how this mailing list
works, but thanks for the response Chad. As i said I have tried the
Permission tag here is the Wix:
  



  
  
http://schemas.microsoft.com/wix/UtilExtension"; Id
="SvcAccount2"
   CanNotChangePassword="yes"
   CreateUser="yes"
   FailIfExists="no"
   PasswordNeverExpires="yes"
   PasswordExpired="no"
   RemoveOnUninstall="yes"
   UpdateIfExists="no"
   Disabled="no"
   Name="LoggingDistributor"
   Password="pa55w0rd">
  

http://schemas.microsoft.com/wix/UtilExtension"; Id
="SvcAccount"
  CanNotChangePassword="yes"
  CreateUser="yes"
  FailIfExists="no"
  PasswordNeverExpires="yes"
  PasswordExpired="no"
  RemoveOnUninstall="yes"
  UpdateIfExists="no"
  Name="PRERSLogging"
  Password="pa55w0rd">
  



  
  
  




he error i received was:

Error 1609. An error occurred while applying security settings.
PRERSLogging is not a valid user or group. This could be a problem with the
package, or a problem connecting to a domain controller on the network.
Check your network connection and click Retry, or Cancel to end the
install. Unable to locate the user's SID, system error 1332

As i said pretty much the same error

Thanks
Noel Anderton


-
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] Creating users and setting Permission's

2008-11-09 Thread noel . anderton

I am trying to install a couple of users and then give them permission's to
access the registry. I want them to be able to create sources fro the event
log. Here is the Wix XML I am using

  
http://schemas.microsoft.com/wix/UtilExtension"; Id
="SvcAccount2"
   CanNotChangePassword="yes"
   CreateUser="yes"
   FailIfExists="no"
   PasswordNeverExpires="yes"
   PasswordExpired="no"
   RemoveOnUninstall="yes"
   UpdateIfExists="no"
   Disabled="no"
   Name="LoggingDistributor"
   Password="pa55w0rd">
  

http://schemas.microsoft.com/wix/UtilExtension"; Id
="SvcAccount"
  CanNotChangePassword="yes"
  CreateUser="yes"
  FailIfExists="no"
  PasswordNeverExpires="yes"
  PasswordExpired="no"
  RemoveOnUninstall="yes"
  UpdateIfExists="no"
  Name="PRERSLogging"
  Password="pa55w0rd">
  



  http://schemas.microsoft.com/wix/UtilExtension"; CreateSubkeys="yes"
EnumerateSubkeys="yes" ChangePermission="yes" GenericAll="yes" User="
PRERSLogging"/>
  http://schemas.microsoft.com/wix/UtilExtension"; CreateSubkeys="yes"
EnumerateSubkeys="yes" ChangePermission="yes" GenericAll="yes" User="
LoggingDistributor"/>
  http://schemas.microsoft.com/wix/UtilExtension"; User="NetworkService"
CreateSubkeys="yes" ChangePermission="yes" EnumerateSubkeys="yes"
GenericAll ="yes" />



I have tried the Permission tag as well, but any way you try, it seems the
users are not set up in time, or at all, to set the permission's. I have
successfully created users in isolation and successfully set permission's
to users that were already on the machine that the install is run on, but I
cannot get them both to happen in the same msi.

Here is the error message from this fragment:

ExecSecureObjects:  Securing Object: MACHINE\SYSTEM\CurrentControlSet
\Services\Eventlog Type: Registry User: PRERSLogging
ExecSecureObjects:  Error 0x80070534: failed to get sid for account:
PRERSLogging

Noel Anderton


-
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