Difference between revisions of "MDT"

From AlphaBook
Jump to: navigation, search
(Unattached installation example)
(Unattached installation example)
Line 44: Line 44:
 
** SkipUserData=YES
 
** SkipUserData=YES
 
** SkipDomainMembership=YES
 
** SkipDomainMembership=YES
** JoinDomain=alphabook
+
** JoinDomain=corp.alphabook.cn
 
** MachineObjectOU=OU=WDS Workstations,DC=corp,DC=alphabook,DC=cn
 
** MachineObjectOU=OU=WDS Workstations,DC=corp,DC=alphabook,DC=cn
 
** DomainAdmin=srv-wds
 
** DomainAdmin=srv-wds

Revision as of 02:56, 11 May 2019

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

Reference