码迷,mamicode.com
首页 > Windows程序 > 详细

C# WindowsService安装与卸载

时间:2014-06-11 10:12:29      阅读:415      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   code   java   

最近在做WinService,总结了一下安装和卸载程序,服务实现内容无法总结了。

安装程序:

bubuko.com,布布扣
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Diagnostics;
 6 
 7 namespace InstallWin
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             if (args.Length > 0)
14             {
15                 if (args[0] == "start")
16                 {
17                     System.Threading.Thread.Sleep(10000);
18                     System.Diagnostics.Process.Start("sc start TalentMonitorService");
19                 }
20             }
21             else
22             {
23                 string DotnetPath = System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory();
24                 string installUtil = DotnetPath + "InstallUtil.exe";
25                 ProcessStartInfo info = new ProcessStartInfo();
26                 info.CreateNoWindow = true;
27                 info.WindowStyle = ProcessWindowStyle.Hidden;
28                 info.FileName = installUtil;
29                 info.Arguments = "\"" + AppDomain.CurrentDomain.BaseDirectory + "WindowsServiceTest.exe\"";
30                 Process pro = Process.Start(info);
31                 Console.WriteLine("正在安装监控服务...");
32                 pro.WaitForExit();
33 
34                 info.FileName = "net.exe";
35                 info.Arguments = "start WindowsServiceTest";
36                 pro = Process.Start(info);
37                 Console.WriteLine("正在启动监控服务...");
38                 pro.WaitForExit();
39             }
40         }
41     }
42 }
bubuko.com,布布扣

卸载程序:

bubuko.com,布布扣
 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 using System.Diagnostics;
 6 
 7 namespace UnInstall
 8 {
 9     class Program
10     {
11         static void Main(string[] args)
12         {
13             string DotnetPath = System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory();
14             string installUtil = DotnetPath + "InstallUtil.exe";
15             ProcessStartInfo info = new ProcessStartInfo();
16             info.CreateNoWindow = true;
17             info.WindowStyle = ProcessWindowStyle.Hidden;
18             info.FileName = "net.exe";
19             info.Arguments = "stop WindowsServiceTest";
20             Process pro = Process.Start(info);
21             Console.WriteLine("正在停止监控服务...");
22             pro.WaitForExit();
23 
24             info.FileName = installUtil;
25             info.Arguments = "/u \"" + AppDomain.CurrentDomain.BaseDirectory + "\\WindowsServiceTest.exe\"";
26             pro = Process.Start(info);
27             Console.Write("正在卸载监控服务...");
28             pro.WaitForExit();
29         }
30     }
31 }
bubuko.com,布布扣

简单的服务:

bubuko.com,布布扣
 1 using System;
 2 using System.Collections;
 3 using System.Collections.Generic;
 4 using System.ComponentModel;
 5 using System.Configuration.Install;
 6 using System.Linq;
 7 
 8 
 9 namespace WindowsServiceTest
10 {
11     [RunInstaller(true)]
12     public partial class ProjectInstaller : System.Configuration.Install.Installer
13     {
14         public ProjectInstaller()
15         {
16             InitializeComponent();
17         }
18     }
19 }
bubuko.com,布布扣
bubuko.com,布布扣
 1 serviceInstaller1.Description:测试服务
 2 
 3 serviceInstaller1.DisPlayName:测试服务
 4 
 5 serviceInstaller1.Parent:ProjectInstaller
 6 
 7 serviceInstaller1.ServiceName:WindowsServiceTest
 8 
 9 
10 serviceProcessInstaller1.Account:LocalService
11 serviceProcessInstaller1.Parent:ProjectInstaller
bubuko.com,布布扣

 

 

C# WindowsService安装与卸载,布布扣,bubuko.com

C# WindowsService安装与卸载

标签:des   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/pyffcwj/p/3772914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!