我有一个Windows服务(每个this article使用.NET 4.7.2
中的C#),该服务实现了ServiceBase.OnCustomCommand
(source)。
我有一个Python 3.6
脚本,需要调用OnCustomCommand
方法。一个人怎么能从Python调用OnCustomCommand
?
我看过的地方
我看到Python具有pywinservicemanager,但似乎尚未实现OnCustomCommand
。我可能是错的。
我想到的最佳解决方案
我从Windows service custom commands from command line看到可以使用sc control
。我目前最好的解决方案是使用类似以下的方法:
import os
os.system('sc control MyService 42`)
提前感谢您的帮助!