本文介绍了我怀疑在c#中添加win服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用windows Service exe,其中一个由Delphilite完成。

现在我想在我的Windows服务中添加那个exe,所以我想用下面的编码


I'm having windows Service exe which one is done by Delphilite.
now i want to add that exe in my windows services so i wite the bellow codings

System.Diagnostics.Process process = new System.Diagnostics.Process();
               System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
               startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
               startInfo.FileName = "cmd.exe";
               startInfo.Arguments = "C:\\Test\\Winservice1.exe /install /silent";
               process.StartInfo = startInfo;
               process.Start();





但它不能正常工作



然后如何使用c安装我的服务#



请帮助我......!

提前谢谢.....!



but it is not working

then how to install my service using c#

Please help me...!
Thanks in advance.....!

推荐答案


这篇关于我怀疑在c#中添加win服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 21:01