Re: [WiX-users] installation of a .net based service with Wixui

2008-08-26 Thread Neil Sleightholm
Use ServiceInstall? Y Use Installer Class? N Use Installutil? N Neil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of bryan rasmussen Sent: 26 August 2008 13:02 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] installation of a .net based

Re: [WiX-users] installation of a .net based service with Wixui

2008-08-26 Thread bryan rasmussen
well I found the following article on installing .NET services using installutil from an installation made with WIX: http://blog.vagmim.com/2004/09/installing-windows-services-created.html The thing which is sort of difficult to understand is the statement: "I had given this link in the WIX users

Re: [WiX-users] installation of a .net based service with Wixui

2008-08-25 Thread Chad Miles
On Account you must specify a domain\account format... On Mon, Aug 25, 2008 at 6:10 AM, bryan rasmussen <[EMAIL PROTECTED]>wrote: > Hi, > > I'm making an installer for a Windows Service that has been developed > in .Net, the following is how I expect to declare my service: > > > Guid=

Re: [WiX-users] installation of a .net based service with Wixui

2008-08-25 Thread Neil Sleightholm
You shouldn't need to do anymore than that. You don't need a service installer in the .net code that is what the ServiceInstall element does (basically installing a service is nothing more that writing a few registry entries HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services). Neil -Origina