如何为用Golang编写的Windows服务设置登录用户帐户?

我使用包“https://pkg.go.dev/github.com/kardianos/service”来运行用Go编写的应用程序作为Windows服务。

我在 中设置了以下属性:service.Config

Username: "myusername"
Option: service.KeyValue{"password": "mypassword"}

当我然后安装程序时,我收到以下错误:The account name is invalid or does not exist, or the password is invalid for the account name specified.

如何设置 的属性以使服务在安装时使用指定的凭据正常运行?service.Config


潇湘沐
浏览 184回答 1
1回答

白衣染霜花

我自己刚刚找到了解决方案。Username:`DESKTOP-XXXXXX\myAcount` Option: service.KeyValue{"password": "mypassword"}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go