Skip to content

cMDTBuildPreReqs

Pavel Andreev edited this page Apr 13, 2018 · 4 revisions

cMDTBuildPreReqs

cMDTBuildPreReqs is a DscResource that enables download of prerequisites for MDT server deployment. Prerequisites can be defined and managed from a pull server according to Desired State Configuration principles.

Available parameters:

  • [Ensure] - Present/Absent
  • [DownloadPath] - Download path for binaries

The DscResource will import applications according to the following principle:

  • Check if prerequisites exist in the DownloadPath
  • If they do not exist the prerequisites will be downloaded over the internet from Microsoft directly

Desired State Configuration job example:

cMDTBuildPreReqs MDTPreReqs {
    Ensure = "Present"            
    DownloadPath = "$SourcePath"
}