Examples/Example-cMDTBuildDirectory.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# # cMDTBuildDirectory Example # $PSDriveName = "MDT001" $PSDrivePath = "E:\MDTBuildLab" Configuration MDTServer { cMDTBuildDirectory Windows10 { Ensure = "Present" Name = "Windows 10" Path = "$($PSDriveName):\Operating Systems" PSDriveName = $PSDriveName PSDrivePath = $PSDrivePath } } |