来自 dll 的 .NET Windows 服务
我在 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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