如何从Python调用.NET的ServiceBase.OnCustomCommand方法?

时间:2019-10-21 21:24:22

标签: c# python .net wcf windows-services

我有一个Windows服务(每个this article使用.NET 4.7.2中的C#),该服务实现了ServiceBase.OnCustomCommandsource)。

我有一个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`) 

提前感谢您的帮助!

0 个答案:

没有答案