library/xWindowsUpdate/2.8.0.0/Examples/Resources/xMicrosoftUpdate/1-Sample_xMicrosoftUpdate.ps1
<#
.EXAMPLE Enables Mircosoft Update on Server1, Server2 and Server3 #> Configuration Example { Import-DscResource -Module xWindowsUpdate Node localhost { xMicrosoftUpdate "EnableMSUpdate" { Ensure = "Present" } } } |