Hello,
Would it be possible to publish the Security Updates Reports that are available in the Security Centra in a format, for example XML or JSON, that can be accessed in an automated/scripted fashion?
We have a number of Windows client computers, and it would be preferable to automate the task of approving/installing the acceptable Windows Security Updates for these clients.
A mockup powershell solution would be something like this:
$SecurityReports = Download-File https://aveva.com/securityreports.json
$AvailableUpdates = Get-WsusUpdate -Approval Unapproved
ForEach ($AvailableUpdate In $AvailableUpdates)
{
If ($SecurityReports -contains $AvailableUpdate)
{
Approve-WsusUpdate $AvailableUpdate
}
}
Idea business value
Automating and validating of future Windows updates for Plant Scada. |
|
Idea priority | 4 – Important to my company |