Skip to content

Update MDT Server

Pavel Andreev edited this page Apr 14, 2017 · 9 revisions
  • Remove current DSC configuration:
Remove-DscConfigurationDocument -Stage Current
  • Close deployment share MDTBuildLab at MDT console

  • Download new module version from PowerShell Gallery:

Update-Module -Name cMDTBuildLab -Verbose
  • Check list of installed modules at your MDT server:
Get-Module -Name cMDTBuildLab -ListAvailable
    Directory: C:\Program Files\WindowsPowerShell\Modules
ModuleType Version    Name          ExportedCommands
---------- -------    ----          ----------------
Script     0.7.2      cMDTBuildLab  {Import-MicrosoftDeploymentToolkitModule, ...
Script     0.7.0      cMDTBuildLab  {Import-MicrosoftDeploymentToolkitModule, ...
  • Uninstall old version(s):
Uninstall-Module -Name cMDTBuildLab -RequiredVersion 0.7.0
  • Remove E:\MDTBuildLab folder
  • Remove any old versions of prerequisites at E:\Source (ADK, SilverLight, etc). Follow up the Version History for actual changes
  • Run DSC configuration script for build new MDT share
Clone this wiki locally