MDT

From AlphaBook
Jump to: navigation, search

Assessment and Deployment Kit (ADK)

Microsoft Deployment Toolkit (MDT)

  • Install MDT
  • Launch DeploymentWorkbench
  • Right click on Deployment Shares, select New Deployment Share
    • Deployment share path: D:\DeploymentShare
    • Share name: DeploymentShare$
    • Deployment share description: MDT Deployment Share
    • Deployment Options
      • Ask if a computer backup shoud be performed
      • Ask for a product key
      • Ask to set the local Administrator password
      • Ask if an image should be captured
      • Ask if BitLocker should be enabled
  • MDT Deployment Share Properties
    • Rules
    • Bootstrap.ini
    • Windows PE Custom background picture
    • ... ...

Unattached installation example

  • Rules
    • [Settings]
    • Priority=Default
    • Properties=MyCustomProperty
    • [Default]
    • OSInstall=YES
    • SkipCapture=YES
    • SkipAdminPassword=YES
    • AdminPassword=xxxxxxxx
    • SkipProductKey=YES
    • SkipBitLocker=YES
    • SkipUserData=YES
    • SkipDomainMembership=YES
    • JoinDomain=corp.alphabook.cn
    • MachineObjectOU=OU=WDS Workstations,DC=corp,DC=alphabook,DC=cn
    • DomainAdmin=srv-wds
    • DomainAdminPassword=xxxxxxxx
    • DomainAdminDomain=alphabook
    • SkipLocaleSelection=YES
    • KeyboardLocale=en-US
    • UserLocale=en-US
    • UILanguage=en-US
    • SkipTimeZone=Yes
    • TimeZoneName=China Standard Time
    • WSUSServer=http://BJWSUS01:8530
    • FinishAction=LOGOFF
    • SkipSummary=NO
    • SkipFinalSummary=YES
  • Bootstrap.ini
    • [Settings]
    • Priority=Default
    • [Default]
    • DeployRoot=\\BJWDS01\DeploymentShare$
    • UserID=srv-wds
    • UserDomain=alphabook
    • UserPassword=xxxxxxxx
    • SkipBDDWelcome=YES
  • Note:
    • Domain account srv-wds need have permission to access \\BJWDS01\DeploymentShare$
    • Domain account srv-wds need have permission to join computer in domain at OU=WDS Workstations,DC=corp,DC=alphabook,DC=cn

MDT log on client

  • c:\windows\temp

JoinDomain Failure: The account *may* already exist in a different OU. Retrying without the specified OU.

  • Issue with DNS, and pay attention to below settings
  • JoinDomain=corp.alphabook.cn
  • MachineObjectOU=OU=WDS Workstations,DC=corp,DC=alphabook,DC=cn
  • DomainAdmin=srv-wds
  • DomainAdminPassword=xxxxxxxx
  • DomainAdminDomain=alphabook

Reference