February 2019
Beginner to intermediate
542 pages
10h 34m
English
Microsoft's Windows Update can produce a large number of updates for you to manage (inspect, accept/decline, and deploy). Some update types, or example critical updates, may be ones you want to automatically approve, so as soon as you receive one of these, you can start deploying it.
This recipe assumes you have a WSUS server, WSUS1, set up as per the previous recipes in this chapter. You can also use your own WSUS server, adapting this recipe as appropriate.
$WSUSServer = Get-WsusServer
$ApprovalRule =
$WSUSServer.CreateInstallApprovalRule('Critical Updates')$Type = 'Microsoft.UpdateServices.Administration.' + 'AutomaticUpdateApprovalDeadline' ...
Read now
Unlock full access