Hi all,
I was curious if there's a .Net API that would allow me to identify what updates are pending for "Windows Update,"
failing that, is there a windows powershell command that can get it?
|
1
|
Hi all, I was curious if there's a .Net API that would allow me to identify what updates are pending for "Windows Update," failing that, is there a windows powershell command that can get it?
|
||
|
|
|
|
The Windows Update Agent API may be what you're looking for: http://msdn.microsoft.com/en-us/library/aa387287%28VS.85%29.aspx It's a COM interface (not .NET native) but you can consume that from your application. |
||
|
|
|
|
OMG, great. But how to set: CanAutomaticallyUpgradeService Property bool CanAutomaticallyUpgradeService () {get} {set} ??? I need it to exactly do that! |
||
|
|
|
|
Here is a VBScript that you can use to install updates with http://msdn.microsoft.com/en-us/library/aa387102(VS.85).aspx You can use a COM object very easily in PowerShell. Given the above VBScript Example, you can use that object in PS as well
You could continue to use get-member to find out all the different options and basically covert that VBScript into PowerShell and tweak it to do whatever you need it to do. Andy |
||
|
|
|
|
That is not that trivial at all, but you just can reference to COM/WUAPI 2.0 Type Library, and VS creates a managed wrapper for you, which is copied to build directory as WuApiLib.dll. Be carefull of memory leaks. |
||
|
|