标签: c# windows-update
我想将以下代码执行到远程计算机,以便查找Windows更新是打开还是关闭:
WUApiLib.AutomaticUpdates auc = new WUApiLib.AutomaticUpdates(); bool active = auc.ServiceEnabled;
我该怎么做?
答案 0 :(得分:1)
我找到了这个:http://www.daveoncsharp.com/2009/10/enumerating-and-controlling-windows-services-with-csharp/
我认为这就是你要找的东西。