My MDT Configuration
Ive been messing around with MDT for a few days for a project that I will be involved in at my college, I have done a lot of research and have created a basic CustomConfig.ini to get most things fully automated.
Below is my configuration, this configuration will skip the login part of the deployment with the (UserID, UserDomain, UserPassword) properties set.
It will automatically fill in the domain screen with the credentials set (DomainAdmin, DomainAdminDomain, DomainAdminPassword, JoinDomain, MachineObjectOU)
The configuration will Set everything to UK inc UK keyboard and UK Language.
It also sets the use of my WSUS server to get the updates as I have my windows updates to install after deployment to make sure everything is up to date.
This configuration is very basic and lots more powerful stuff like set computer name depending on MAC address.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
[Settings] Priority=Default Properties=MyCustomProperty [Default] OSInstall=Y UserID=<strong>USERNAME</strong> UserDomain=<strong>DOMAIN</strong> UserPassword=<strong>PASSWORD</strong> SkipCapture=YES SkipAdminPassword=YES SkipProductKey=YES SkipComputerBackup=YES SkipBitLocker=YES _SMSTSORGNAME="<strong>COMPANY NAME</strong>" _SMSTSPackageName="<strong>DEPLOYMENT MESSAG</strong>E" DomainAdmin=<strong>USERNAME</strong> DomainAdminDomain=<strong>DOMAIN</strong> DomainAdminPassword=<strong>PASSWORD</strong> JoinDomain=<strong>DOMAIN</strong> MachineObjectOU=<strong>DOMAIN OU (OU=TestGPO,DC=MYDomain,DC=local)</strong> KeyboardLocalePE=<strong>0809:00000809</strong> SkipApplications=YES SkipAppsOnUpgrade=YES SkipCapture=YES DoCapture=NO NetworkLocation=Work SkipSummary=NO Home_page=http://www.google.co.uk SkipLocaleSelection=YES SkipTimeZone=YES TimeZone=<strong>085</strong> UserLocale=<strong>en-GB</strong> UILanguage=<strong>en-GB</strong> InputLocale=<strong>en-GB</strong> KeyboardLocale=<strong>en-GB</strong> SkipUserData=YES SkipComputerBackup=YES SkipBDDWelcome=YES WSUSServer=<strong>http://192.168.1.12:8530</strong> |