As Windows 7 is available to the public, deployments of the new operating system will knock on our door in the near future. Here at The D Spot we will go through Microsoft Deployment Toolkit 2010 (MDT), in order to be prepared when management decides to roll out first thing Monday morning.
Microsoft Deployment Toolkit (MDT) is a Solution Accelerator for operating system and application deployment. MDT 2010 supports deployment of Windows 7 and Windows Server 2008 R2 in addition to deployment of Windows Vista, Windows Server 2008, Windows Server 2003, and Windows XP.
We will start our MDT 2010 series with a basic Windows 7 Lite Touch installation (LTI). In this first article we will setup an easy to understand deployment of Windows 7. In future articles we will customize our LTI deployment to understand all possible options available in MDT 2010.
Prerequisites:
You must be a member of a domain and have a DHCP server in place to feed our client machines with IP addresses. Prerequisites tools are MDT 2010 and Windows Automated Installation Kit (AIK) for Windows 7, available at Microsoft for free. After installing both tools on our client computer we are ready to begin.
Start the Deployment Workbench.

You can find it under All Programs –> Microsoft Deployment Toolkit –> Deployment Workbench.
First we need to create a Deployment Share:

Right-click on Deployment Shares and choose New Deployment Share.

Choose a path where all data will be stored. This folder must be on a NTFS partition. I choose X:\DeploymentShare.
Next, specify a sharename and description for the store:

DeploymentShare$ is the sharename and MDT Deployment Share is the description. I leave both default settings.
Next step we need to choose whether we want to be able to capture an image after deploying it to a computer. We leave this option enabled, so we can capture an reference image later.

We leave options Allow Admin Password and Allow Product Key disabled. Last screen is the summary, click next to start creating of the Deployment Share. Close the wizard to return the our Deployment Workbench.

Installation complete, we’re ready to configure our newly create deployment share.
First add Windows 7 setup files to the deployment share by right-click Operating Systems and choose Import Operating System.

Choose Full set of source files, specify the Windows 7 DVD so all files can be copied to the deployment share:

Choose a directory name, where to store this operating system in the deployment share:

At the Summary screen we get an overview of what we have created, give it a quick look and click Next to begin the import process.



We’re done importing the Windows 7 DVD. We can add applications and drivers as we like, but in this basic article I will leave it for future posts.
Now we need to create a Task Sequence (TS). Task sequences provide the mechanism for performing multiple steps or tasks on a client computer at the command-line level without requiring user intervention. We need to create a TS for deploying our Windows 7 to a virtual bare-metal computer. Right-click Task Sequences and choose New Task Sequence.


Choose an ID, and a Name for the Task Sequence.


Select Standard Client Task Sequence and select the operating system to deploy (we have only one OS imported yet).


Select Do not specify a product key, and fill in the OS Settings.


Last step is to specify a local admin password for the client computer. Next, Finish to create the Task Sequence.
After creating our TS we need to update the deployment share by right-click our deployment share and choose Update Deployment Share.



The update process does several things. Like the creation of the WinPE iso files, needed to boot our client to start deployment. These iso files are stored in the \Boot directory of the deployment share.
Now we are ready to perform the operating system installation. I’m using a Hyper-V virtual machine as a target machine. But you can burn the ISO to CD or copy it to a bootable USB drive to install a physical machine as well.
I create a new virtual machine in Hyper-V. And choose to install an OS from image and specify the file LiteTouchPE_x86.iso created earlier with MDT (in the Update process). So it will boot from the ISO file.

Fire up the virtual machine:




As you can see the default keyboard layout is set to United States, and we need to specify credentials to the deployment share. These and many more can be preconfigured in configuration files. Think about the winnt.sif file used in Windows XP unattended setups. It’s not like it, but it will come close.


To proceed the installation choose a Task Sequence. As we have only one, we can’t miss. Choose a computername and click Next.


You can join the domain or choose to join a workgroup and restore files using USMT.




All these settings need to be modified. I made screencaps of the default settings, so you can see what we can preconfigure with the configuration files. In order make an installation with only the minimal user interaction.


The installation has started.

Installation complete.
In the next article we will modify the MDT configuration files, to make this deployment less interactive and more unattended.