我正在尝试使用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。帐户名无效或不存在,或者密码对指定的帐户名无效
为什么我会收到此错误以及如何解决此问题? 感谢。
答案 0 :(得分:17)
您是否为UserName指定了域。即如果您的机器被称为FASTCAR,您试过吗
spInstaller.UserName = "FASTCAR\\UserName";