modules/deploy/dsc/ext/PsGallery/xWindowsUpdate.2.3.0.0/Examples/Sample_xWindowsUpdateFromPath.ps1
<# # This sample looks at installing a particular windows update. However, the path and ID properties can be changed # as per the hotfix that you want to install #> Configuration DownloadHotfixFromPath { xHotfix m1 { Path = "c:\WindowsBlue-KB2937982-x64.msu" Id = "KB2937982" Ensure="Present" } } DownloadHotfixFromPath Start-DscConfiguration -path ./DownloadHotfixFromPath -wait -Verbose |