如何检查远程计算机中是否启用了Windows更新

时间:2017-03-17 08:17:27

标签: c# windows-update

我想将以下代码执行到远程计算机,以便查找Windows更新是打开还是关闭:

WUApiLib.AutomaticUpdates auc = new WUApiLib.AutomaticUpdates();
bool active = auc.ServiceEnabled;

我该怎么做?

1 个答案:

答案 0 :(得分:1)

我找到了这个:http://www.daveoncsharp.com/2009/10/enumerating-and-controlling-windows-services-with-csharp/

我认为这就是你要找的东西。