在Windows服务中获取ServiceProcessinstaller帐户

时间:2016-06-11 14:28:13

标签: c# windows-services

我有一个C#Windows服务和一个负责安装服务的Windows窗体项目。

现在,在我的Windows服务中,我将serviceProcessInstaller 帐户设置为:

enter image description here

在我的Windows窗体项目中,我需要一种方法来获取帐户类型或在安装之前设置我的服务的帐户类型。问题是我只能访问.exe服务文件,因为项目之间没有引用,这就是方法。

我正在使用:

System.Diagnostics.Process p = new System.Diagnostics.Process();

安装服务。

我可以使用反射来获取.exe文件并读取该属性吗? 如果我可以阅读该属性,是否可以在使用System.Diagnostics.Process安装服务时设置这些设置?

0 个答案:

没有答案