Microsoft Deployment Toolkit 2010 Beta 1: Using MDT to Prepare, Install and Capture customized Windows 7 Images – Part II
January 31, 2009 at 8:55 pm | Posted in Microsoft Deployment Toolkit (MDT), Windows 7 | 12 CommentsTags: Image Deployment, Windows 7, Microsoft Deployment Toolkit (MDT) 2010
On the first post of this series, we’ve managed to install MDT 2010 and its requirements, prepare distribution share and task sequence, add Windows 7 image to use it as reference and create the deployment point. We are now going to add Office 2007 as an application to be deployed included in the OS image and complete the environment to generate the reference image.
The process of adding an application like Office 2007 it is quite simple, the only trick is to get the application to install silently (or unattended) without requiring for user intervention , we’ll see how that works.
Adding Applications to MDT 2010: Office 2007
We’ll add the application using also a simple wizard, but the interesting part comes when you get the chance to modify default settings on the Office 2007 package:
1. “Deployment Workbench” > “Distribution Share” > “Applications” > “New”.

2. Select “Application with source files”.

3. Complete the data about the application.

4. Select the “Source Directory”. Since I have it on the hard drive, I’ll check “Move the files to the distribution share instead of copying them”.

5. Keep the directory name as suggested: “Microsoft Office 2007”.

6. On “Command Details” introduce the name of the executable for Office 2007: “setup.exe” and click on “Finish”. We’ll add the special arguments to achieve silent installations in next steps.

With that performed the Office 2007 is added as an application in Microsoft Deployment Toolkit. MDT also detects automatically the options available for Office products, this way we can modify them in a simple way.
Office 2007: Silent and personalized installation
To achieve this, we are going to use the mentioned feature of MDT to generate a “Config.xml” file that is used for personalizing installations of Office 2007. This XML is a very flexible option that we can modify according to our needs and generate ourselves custom and unattended Office suite installations.
1. Access the Application Properties from the “Deployment Workbench” console. And get to the “Office Products” tab.
2. Now we are going to select the following options:
Office 2007 Product to Install: Enterprise (this is the version that I’m using).
Office 2007 Languages: en-us.
Product Key: If applies, select your PID.
Customer Name: Augusto Alvarez
Display Level: None. This will generate the silent installation.
Accept EULA: Checked.

3. Click on “Apply”.
This will generate the XML file that you can check it clicking on “Edit Config.xml”. You should see something like this (notice that the first section it’s just a sample):

You can check also on “Details” tab that “setup.exe” command line has been modified to use the recently generated XML: “setup.exe /config Enterprise.WW\config.xml” (Enterprise.WW is the folder where the XML file is stored)

This XML file will install all the components of the Office 2007 Enterprise suite. If you want to continue customizing the components to be installed, check this example of Config.xml that selects only Word, Excel, OneNote, Outlook, PowerPoint and remove remaining components.
Config.xml Example
<Configuration Product="Enterprise">
<Display Level="none" CompletionNotice="no" SuppressModal="no" AcceptEula="yes" />
<USERNAME Value="Augusto Alvarez" />
<AddLanguage Id="match" />
<AddLanguage Id="en-us" ShellTransform="Yes" />
<OptionState Id="AccessFiles" State="absent" Children="force" />
<OptionState Id="ExcelFiles" State="Local" />
<OptionState Id="GrooveFiles" State="Absent" Children="force" />
<OptionState Id="OneNoteFiles" State="Local" Children="force" />
<OptionState Id="OUTLOOKFiles" State="Local" />
<OptionState Id="PPTFiles" State="Local" />
<OptionState Id="PubPrimary" State="Absent" Children="force" />
<OptionState Id="RMSFiles" State="Local" Children="force" />
<OptionState Id="WORDFiles" State="Local" />
<OptionState Id="XDOCSFiles" State="Local" Children="force" />
<OptionState Id="SHAREDFiles" State="Local" />
<OptionState Id="TOOLSFiles" State="Local" />
<OptionState Id="EXCELFiles" State="Local" /></Configuration>
For more information about Config.xml customization check this link: Config.xml file in the 2007 Office system.
Adding Office 2007 to the Task Sequence
With the previous steps we have already added the Office suite and configured to a silent installation. Now we need to introduce it on the task sequence prepared on the previous post.
1. “Deployment Workbench” > “Task Sequences” > “Win7” > “Properties”.
2. Access the tab “Task Sequence”. Here are all the steps involved in the process, you can check all the options (most of them did not appear on the Task Sequence wizard) and change their values or disable specific steps.

3. The step that we are interested in is “State Restore” > “Install Applications”. Select “Install a single application” > “Microsoft Office 2007”. Click “OK”.

If you later want to add more applications to the same task sequence, use the same step on this task sequence, select “Add” > “General” > “Install Application”. The application must, of course, added already to MDT.

Now the installation of Office 2007 it’s included on the “Deploy Windows 7” sequence and will occur silently with the parameters included.
On the next post we’ll see how to boot and generate the Windows 7 image that will be captured and ready to be deployed on your environment.
Cheers!
With testking 642-446 study guide, you will have the chance to learn step by step procedure to create customized descriptions for window 7. Sign up for testking 642-383 online training and get testking 70-662 free tutorials to learn about MDT 2010 to prepare, install and capture customized images for window 7.
12 Comments »
RSS feed for comments on this post. TrackBack URI
Leave a comment
Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.


Computer geek, totally fan of the latest's IT platform solutions. Since 2006 I've been mentioned as Microsoft Student Partner, I continue working with them, collaborating on different academic and technological events. On this blog, you'll find most of the experience I have evaluating, designing, implementing and managing those technologies.



[...] [...]
Pingback by Posts about Windows 7 as of February 1, 2009 | The Lessnau Lounge — February 1, 2009 #
[...] Microsoft Deployment Toolkit 2010 Beta 1: Using MDT to Prepare, Install and Capture customized Windo… [...]
Pingback by Microsoft Deployment Toolkit 2010 Beta 1: Using MDT to Prepare, Install and Capture customized Windows 7 Images – Part I « Augusto Alvarez — February 2, 2009 #
[...] 2010 Beta 1, that works only with WAIK 2.0 (check these articles of mine about MDT 2010: Post I, Post II and Post III); maybe you’ve noticed that the management tools that were included with WAIK 1.1 [...]
Pingback by Step-by-Step: Adding Hyper-V Integration Components to Windows PE using WAIK 2.0 Tools « Augusto Alvarez — March 1, 2009 #
Windows 7 RC1 gets special Features…
Ok.. I just installed Windows 7 build 7057 onto my 17″ macbook pro (early 2009 model). I got everything running except the wifi. It seems to show a live connection available but refuses to get online. I installed all the drives from my leopard 10. 5 cd…
Trackback by Windows 7 RC1 gets special Features — April 26, 2009 #
Thanks for the post!
Great!
Abraço
Eder Machado
Brasil
Comment by Eder — July 12, 2009 #
Hi,
The articles is great, good work. The only issues is that i can not find the MDT 2010 beta 1 installation files anywhere. The MDT 2010 beta 2 is slightly different and can find any step-by-step guide to deploy. Can you help is any ways. Thanks
Comment by Mboso-owo — July 31, 2009 #
First of all i would like to thank you for the great article!
I have a question to ask you!
Is it possible to use MDT 2010 to deploy applications to already preinstalled windows 7?
For example i would like to deploy only office 2007 or another application.
An another wuestin is it possible to use MDT to update already installed applications.
Thank you
Comment by Kon — November 5, 2009 #
Hello Kon,
To deploy and update applications you can use System Center Configuration Manager 2007 (SCCM), that also works with MDT task sequences.
Cheers!
Augusto
Comment by Augusto Alvarez — November 5, 2009 #
[...] 2010 beta) to capture and deploy unattended installations of Windows 7 with Office 2007 (Post I, Post II and Post III). Also we’ve reviewed how to implement unattended installations of Windows Vista [...]
Pingback by Deploying Windows 7 Using Windows Deployment Services (WDS): Step-by-Step – Part I « Augusto Alvarez — April 20, 2010 #
[...] 2010 Beta 1: Using MDT to Prepare, Install and Capture Customized Windows 7 Images”: Part I, Part II and Part III. Within those posts we had the chance to review some step-by-step procedures to create [...]
Pingback by Deploying Windows 7 + Office 2010 Using Microsoft Deployment Toolkit (MDT) 2010 – Part I « Augusto Alvarez — July 13, 2010 #
Hi,
Thanks for the guide, its really good. But I need to install the multiple applications (so end user can decide if they want all or some of them….) can you tell me how to do that ?
Comment by Malik — August 4, 2010 #
[...] Microsoft Deployment Toolkit 2010 Beta 1: Using MDT to Prepare, Install and Capture customized Windows 7 Images – Part III February 2, 2009 at 12:42 am | Posted in Microsoft Deployment Toolkit (MDT), Windows 7 | 58 Comments Tags: Image Deployment, Microsoft Deployment Toolkit (MDT) 2010, Windows 7 This is going to be the last part (at least for now) for this step-by-step guide for customizing and deploying Windows 7 images with MDT 2010. On the previous posts we’ve learned how to run the firsts configurations on MDT, adding operating system files and creating a task sequence for the reference image (Part I); and also adding Office 2007 to the reference image and making it a silent installation (Part II). [...]
Pingback by Microsoft Deployment Toolkit 2010 Beta 1: Using MDT to Prepare, Install and Capture customized Windows 7 Images – Part III « Augusto Alvarez — September 2, 2010 #