Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-10 Thread Muthuraj Velayutham
ed .NET topics. [mailto:[EMAIL PROTECTED] Behalf Of Streno, Robert Sent: Wednesday, September 10, 2003 10:51 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation Oh yeah, I've seen that a lot. Put error handling in your "Start" and construc

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-10 Thread Streno, Robert
no place to show the exception. R -Original Message- From: Muthuraj Velayutham [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2003 1:22 PM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation Hi Richard, I did use the Customer Acti

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-10 Thread Muthuraj Velayutham
Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] Behalf Of Hein, Richard Sent: Tuesday, September 09, 2003 11:30 PM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation I have had these problems before myself. Have you added a custom

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-10 Thread James Geall
PROTECTED] Sent: Tuesday, September 09, 2003 6:11 PM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation Hi Pete, I uninstalled my windows service using Add/Remove programs. I tried to reinstall after somechanges to my windows service, but I haven't

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-10 Thread Hein, Richard
t know why doesn't allow to uninstall the service. Raj -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] Behalf Of Brown, Peter Sent: Tuesday, September 09, 2003 9:37 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-10 Thread Keith Hill
You could simplify the one line to: using System.Runttime.InteropServices; using System.IO; psi.FileName = Path.Combine(RuntimeEnvironment.GetRunTimeDirectory(), "installutil.exe"); -- Keith -Original Message- From: Paulo Sacramento [mailto:[EMAIL PROTECTED] Sent: Monday, September 08,

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Kenneth Brubaker
This brings up the whole question of where the deployment projects are documents. It sure seems to be a bit of alchemy. Does anyone know if there is any books or good articles on the subject? Deployment builds seem to be a bit of a spelunking expedition. Kenneth Brubaker Original Message Follo

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Muthuraj Velayutham
aj -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] Behalf Of Brown, Peter Sent: Tuesday, September 09, 2003 9:37 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation You don't need to do all

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Muthuraj Velayutham
9:37 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation You don't need to do all that if you add the custom installer to your project and then add a deployment project to the solution. I'm almost positive that installutil fails if you don&

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Brown, Peter
, birds, photography) --  Be sure to check out www.vb-faq.com and www.codehound.com -Original Message- From: Paulo Sacramento [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 6:56 PM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Automating Windows Service Installation

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Bill Bassler
Look at the Installer class and Custom actions in the Windows Installer. There is very little documentation but essentially you'll want to run the Custom action (install the service) from its own project. === This list is hosted by DevelopMentor® http://www.develop

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Andy Edmiston
From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Muthuraj Velayutham Sent: 08 September 2003 21:57 To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Automating Windows Service Installation Hi, I have a Windows Service, which has to be installed on to

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Ravi Pazhani
urservice.exe HTH Ravi From: Muthuraj Velayutham <[EMAIL PROTECTED]> Reply-To: "Moderated discussion of advanced .NET topics." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Automating Windows Service Installation Date: Mon, 8 Sep 2003 16:57:27 -0400 Hi, I

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Hein, Richard
, Richard Anthony Hein Level Platforms Inc. -Original Message- From: Muthuraj Velayutham [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 4:57 PM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Automating Windows Service Installation Hi, I have a Windows Service, which has to be

Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Paulo Sacramento
p.Start(); p.WaitForExit(); Console.WriteLine(p.StandardOutput.ReadToEnd()); } Paulo Sacramento - Original Message - From: "Muthuraj Velayutham" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, September 08, 2003 9:57 PM Subject: [ADVANCED-DOTNET]

[ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-08 Thread Muthuraj Velayutham
Hi, I have a Windows Service, which has to be installed on to our clients Servers. During the development i can use installutil provided in .NET SDK to install the Windows service and test it. Now as a part of deployment I am building a setup project to install this Windows service. When I tried