Hi, I'm trying to install a service using the following WIX fragment and using 
an existing domain account as the service account.

<ServiceInstall  Id="EventManagerServiceInstall"
                                                    Name="Service1"
                                                    DisplayName="Service1
                                                    Type="ownProcess"
                                                    Interactive="no"
                                                    Start="auto"
                                                    Vital="yes"
                                                    ErrorControl="normal"
                                                    Description=" Service 
Description "
                                                     Account="[SERVICEACCOUNT]" 
Password="[SERVICEACCOUNTPASSWORD]"/>
                 <ServiceControl  Id="EventManagerServiceControl"
                                                    Name=" Service1
                                                    Stop="both"
                                                    Remove="uninstall"
                                                    Wait="yes"></ServiceControl>

After googling allot I have the following.

The serive is marked as non-interactive according to the service's table on MSDN
The domain account is configured as "Log On As Service" in the local machine 
policy.
The msi is run as administrator.

But still I get:

Error 1923: Verify that you have sufficient privileges to install system 
services.

According to what I could find out is that 1923 is a generic error for a number 
of things that can go wrong,
but no list exist of the number of things to be able to eliminate the 
possibilities :)

Can anyone please advise?

Regards
Christoffel le Roux


This information is intended only for the person or entity to which it is 
addressed and may contain private, confidential, proprietary and/or privileged 
material and may be subject to confidentiality agreements. Any review, 
retransmission, dissemination, or any other use of or taking of any action in 
reliance upon this information, by persons or entities other than the intended 
recipient, is prohibited. If you received this in error, please contact the 
sender and delete the material from all storage media. FlowCentric is neither 
liable for proper, complete transmission of the information contained in this 
communication, any delay in its receipt or that the mail is virus-free.
------------------------------------------------------------------------------
Master Java SE, Java EE, Eclipse, Spring, Hibernate, JavaScript, jQuery
and much more. Keep your Java skills current with LearnJavaNow -
200+ hours of step-by-step video tutorials by Java experts.
SALE $49.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122612 
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to