我正在尝试使用Visual Studio 2008安装和部署项目安装我的
Windows服务应用程序.我创建了一个“运行即服务”权限的用户帐户,并将ServiceProcessInstaller.Account设置为System.ServiceProcess.ServiceAccount.User,并将用户名和密码设置为我之前创建的用户.
spInstaller.Account = System.ServiceProcess.ServiceAccount.User; spInstaller.Username = "USER NAME"; spInstaller.Password = "PASSWORD"; sInstaller.ServiceName = "SERVICE NAME"; sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;
但在安装过程中,我收到以下错误:
错误:1001.帐户名无效或不存在,或者密码对于指定的帐户名无效
您是否为UserName指定了域.即如果您的机器被称为FASTCAR,您是否尝试过
原文链接:https://www.f2er.com/windows/364221.htmlspInstaller.UserName = "FASTCAR\\UserName";