来自 dll 的 .NET Windows 服务

发布于 2024-10-24 07:44:58 字数 289 浏览 2 评论 0原文

我在 .NET 类库(不是 exe)内有一个 Windows 服务和服务安装程序。

通过 installutil 安装服务后,在尝试启动时,我收到错误

Windows could not start the xxx service on Local Computer  
Error 193: 0xc1

在谷歌搜索中我发现此错误可能是由于我的服务是 dll 的一部分而不是 exe 的一部分。这可能是问题所在吗?如果是这样,我该如何解决这个问题?如果不是,还有什么问题可能会出现。

I have a Windows Service and Service Installer inside of a .NET class library (not an exe).

Once the service is installed via installutil, when trying to start, I get the error

Windows could not start the xxx service on Local Computer  
Error 193: 0xc1

In googling I found that this error might be due to the fact that my service is part of a dll, not an exe. Could this be the problem? If so, how can I resolve the issue? If not, what else could be the problem.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南城追梦 2024-10-31 07:44:58

在 VS.NET 中,转到“新建项目/Windows/Windows 服务”,覆盖该服务并使用您自己的类安装类。然后就可以对编译好的exe文件使用installutil了。无法从 .dll 安装 Windows 服务

In VS.NET go to New Project/Windows/Windows Service, overwrite the service and install classes with your own. Then you can use installutil on the compiled exe file. There is no way you can install a windows service from a .dll

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文