Examples/Example-cMDTBuildOperatingSystem.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# # cMDTBuildOperatingSystem Example # $SourcePath = "E:\Source" $PSDriveName = "MDT001" $PSDrivePath = "E:\MDTBuildLab" Configuration MDTServer { cMDTBuildOperatingSystem Win10x64 { Ensure = "Present" Name = "Windows 10 x64" Path = "Windows 10" SourcePath = "$SourcePath\Windows10x64" PSDriveName = $PSDriveName PSDrivePath = $PSDrivePath } } |