可能重複:
Querying if a Windows Service is disabled (without using the Registry)?檢查服務是否正在運行?
我需要檢查,如果 '事件日誌' 服務正在運行。怎麼做?
可能重複:
Querying if a Windows Service is disabled (without using the Registry)?檢查服務是否正在運行?
我需要檢查,如果 '事件日誌' 服務正在運行。怎麼做?
使用OpenSCManager(),然後使用OpenService(),然後使用ControlService()。
您可以執行
>sc query Eventlog
,並檢查結果。
使用Win32 API的一些示例代碼可以找到here。