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

安装完成Windows服务后自动打开

时间:2015-12-08 20:17:45      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

使用DOS进程开启服务


设置serviceProcessInstaller1控件的Account属性为“LocalSystem
设置serviceInstaller1控件的StartType属性为"Automatic"

 

在服务器上添加安装程序,在ProjectInstaller_AfterInstall(object sender, InstallEventArgs e)事件中,添加代码

 1 System.Diagnostics.Process p = new System.Diagnostics.Process();
 2 p.StartInfo.FileName = "cmd.exe";
 3 p.StartInfo.UseShellExecute = false;
 4 p.StartInfo.RedirectStandardInput = true;
 5 p.StartInfo.RedirectStandardOutput = true;
 6 p.StartInfo.RedirectStandardError = true;
 7 p.StartInfo.CreateNoWindow = true;
 8 p.Start();
 9 string Cmdstring = "sc start myservice"; //CMD命令
10 p.StandardInput.WriteLine(Cmdstring);
11 p.StandardInput.WriteLine("exit");

 

安装完成Windows服务后自动打开

标签:

原文地址:http://www.cnblogs.com/objecttozero/p/Auto_Windows_Service.html

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