检查 SERVICE 是否为 运行 VB NET
Check if SERVICE is running VBNET
我想知道服务是 运行 (VBNET) 还是 return 是假值还是真值
我发现了其他问题,但代码对我不起作用..
谢谢!
使用service controllerclass判断服务是否运行。
For Each s As ServiceController In ServiceController.GetServices()
If s.ServiceName = "yourservicename" AndAlso s.Status = ServiceControllerStatus.Running Then
Return True
End If
Next
希望对您有所帮助。
我想知道服务是 运行 (VBNET) 还是 return 是假值还是真值
我发现了其他问题,但代码对我不起作用..
谢谢!
使用service controllerclass判断服务是否运行。
For Each s As ServiceController In ServiceController.GetServices()
If s.ServiceName = "yourservicename" AndAlso s.Status = ServiceControllerStatus.Running Then
Return True
End If
Next
希望对您有所帮助。