Re: [WiX-users] Help on Service

2008-01-11 Thread Richard
In article <[EMAIL PROTECTED]>, Adam Majer <[EMAIL PROTECTED]> writes: > I don't know if this is the same problem as in my case, but if your > service uses some runtime that is also installed by the MSI (eg. C > runtime), it CANNOT be started until MSI finalizes installation. The C > runtime

Re: [WiX-users] Help on Service

2008-01-11 Thread Adam Majer
Anidil wrote: > > I see that the service.exe has been copied and registered under windows > service console.but it doesn't start automatically.I get the following > message when tried starting manually."Windows could not start the service on > Local Computer. Error 1053: The service did not respon

Re: [WiX-users] Help on Service

2008-01-11 Thread Richard
Is your service also a COM server? /RegServer is generally used with EXE COM servers. -- "The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download Legalize Adulthood!

Re: [WiX-users] Help on Service

2008-01-11 Thread Meyrignac, Jean-Charles
bjet : Re: [WiX-users] Help on Service I see that the service.exe has been copied and registered under windows service console.but it doesn't start automatically.I get the following message when tried starting manually."Windows could not start the service on Local Computer. Error 1053: Th

Re: [WiX-users] Help on Service

2008-01-11 Thread Anidil
ED] De la part de Anidil > Envoyé : vendredi 11 janvier 2008 08:08 > À : wix-users@lists.sourceforge.net > Objet : Re: [WiX-users] Help on Service > > > > I get the following error message: > "Service 'service.exe' ('service.e

Re: [WiX-users] Help on Service

2008-01-11 Thread Meyrignac, Jean-Charles
---Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part de Anidil Envoyé : vendredi 11 janvier 2008 08:08 À : wix-users@lists.sourceforge.net Objet : Re: [WiX-users] Help on Service I get the following error message: "Service 'service.exe' ('servic

Re: [WiX-users] Help on Service

2008-01-10 Thread Anidil
I get the following error message: "Service 'service.exe' ('service.exe') failed to start.Verify that you have sufficient privileges to start system services" I'm logged in as Admin user Richard-45 wrote: > > > In article <[EMAIL PROTECTED]>, > Anidil <[EMAIL PROTECTED]> writes: > >> G

Re: [WiX-users] Help on Service

2008-01-10 Thread Richard
In article <[EMAIL PROTECTED]>, Anidil <[EMAIL PROTECTED]> writes: > Get the registration information (e.g., from the source code or doc) and > put them in the Registry directly. He was talking about COM registration there, not service registration. For services use the ServiceInstall and

Re: [WiX-users] Help on Service

2008-01-10 Thread Anidil
>Get the registration information (e.g., from the source code or doc) and >put them in the Registry directly. I get an error message saying that "Could not write value to key \HKLM\SYSTEM\CurrentControlSet\Services\ service.Verify that you have sufficient access to that key, or contact your

Re: [WiX-users] Help on Service

2007-09-24 Thread Bob Arnson
Anidil wrote: > I see the service getting registered under the path, > HKLM\SYSTEM\CurrentControlSet\Services\service.Do you mean to put these > registry values directly?If yes, tomorrow if there gonna be some change in > windows with regards to service registry update path,how will i make sure

Re: [WiX-users] Help on Service

2007-09-24 Thread Anidil
I see the service getting registered under the path, HKLM\SYSTEM\CurrentControlSet\Services\service.Do you mean to put these registry values directly?If yes, tomorrow if there gonna be some change in windows with regards to service registry update path,how will i make sure that does not affect

Re: [WiX-users] Help on Service

2007-09-19 Thread Bob Arnson
Anidil wrote: > What is the best approach to implement this using WiX? > Get the registration information (e.g., from the source code or doc) and put them in the Registry directly. Install-time registration is a major cause of setup headaches; avoid it at all costs. -- sig://boB http://joyo

[WiX-users] Help on Service

2007-09-19 Thread Anidil
I have the following file set which help me register and start a service. 1.main service executable 2.dependent dlls 3.ExecuteProcess.exe to which i pass "/RegServer" to get the service registered under windows How can i get these dlls registered? should i be using a custom action for "ExecuteP