Re: [WiX-users] How to Start a Service?

2007-11-08 Thread Richard.Foster
One of the other Richard's wrote: How do you know that your service starts properly at all? Since you're installing it, I assume that you've written and debugged it already, but you didn't say. A very common problem (which appears frequently on the mailing list) related to installation of

Re: [WiX-users] How to Start a Service?

2007-11-08 Thread Richard
In article [EMAIL PROTECTED], ar [EMAIL PROTECTED] writes: Error 1923. Service 'foobar Service' (Foobar.exe) could not be installed. Verify that you have sufficient privileges to install system services. MSI (s) (18:E8) [10:42:57:784]: Product: Foobar 1.0 -- Error 1923. Service 'foobar

Re: [WiX-users] How to Start a Service?

2007-11-08 Thread ar
we have a setup.exe to install our product. If I install using setup.exe I am able to see the sevice running I am using the same Exe for my .msi . I think there is no problem with the exe. If you have some sample service shall you please share it with me. I appreciate your help. Thanks.

Re: [WiX-users] How to Start a Service?

2007-11-08 Thread Richard
In article [EMAIL PROTECTED], ar [EMAIL PROTECTED] writes: I am using the same Exe for my .msi . I think there is no problem with the exe. OK, then it comes down to whether or not you are referencing everything in the ServiceInstall properly. I've used MSIs to install and manipulate

[WiX-users] How to Start a Service?

2007-11-07 Thread ar
I am trying to start a service Foobar.exe . I created a sample.msi using the following code. When I run sample.msi under administrator I am getting this following Error. Error 1920. Service 'Foobar.exe' (Foobar.exe) failed to start. Verify that you have sufficient privileges to start system

Re: [WiX-users] How to Start a Service?

2007-11-07 Thread Richard
In article [EMAIL PROTECTED], ar [EMAIL PROTECTED] writes: Shall any one please let me know How to start a service? Your service names don't match: ServiceInstall Id='FoobarExe_ServiceInstall' DisplayName='foobar Service' Name='FoobarExe' ErrorControl='normal' Start='auto'