我创建了一个自定义Windows服务,并尝试通过命令提示符启动它:
C:\Windows\system32>net START "CustomService"
The CustomService service is starting.
The CustomService service could not be started.
The service did not report an error.
More help is available by typing NET HELPMSG 3534.
我尝试查看HELPMSG3534。它指出:该服务未报告错误。我不知道从这里去哪里。我尝试使用谷歌搜索,但没有什么真正的帮助。我真的不知道如何解决这个问题。
Protected Overrides Sub OnStart(ByVal args() As String)
SetConfigVariables()
_logger.WriteMessageToLog(SimpleLog.LogType.InfoType, "Start Service")
End Sub
SetConfigVariables()调用sql server并提取一些数据并设置适当的全局变量。