<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Microsoft Deployment Toolkit Team Blog</title><link>http://blogs.technet.com/msdeployment/default.aspx</link><description /><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Fix for ‘Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed” problem with MDT 2010</title><link>http://blogs.technet.com/msdeployment/archive/2009/09/18/fix-for-multiple-connections-to-a-server-or-shared-resource-by-the-same-user-using-more-than-one-user-name-are-not-allowed-problem-with-mdt-2010.aspx</link><pubDate>Fri, 18 Sep 2009 23:31:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3282003</guid><dc:creator>msdeployment</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3282003.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3282003</wfw:commentRss><description>&lt;P&gt;There have been&amp;nbsp;reports of a problem when running Refresh, Replace, Sysprep and Capture, and Custom task sequences with MDT 2010.&amp;nbsp; When running those scenarios an error message is displayed after completing the wizard that states “A connection to the distribution share could not be made”.&amp;nbsp; When looking at the log files the error states: ‘Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.”&lt;/P&gt;
&lt;P&gt;This problem seems to occur most often when logged onto the client machine as one user and entering different credentials into the deployment wizard or customsettings.ini.&lt;/P&gt;
&lt;P&gt;We have developed a fix for this problem.&amp;nbsp; To fix the problem you should edit the ztiutility.vbs file in the deployment share under the scripts folder.&amp;nbsp; Open the file in notepad and replace the following code in the MapNetworkDriveEX function:&lt;/P&gt;
&lt;P&gt;Case Else&lt;/P&gt;
&lt;P&gt;' Case &amp;amp;h800704C3 ' Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed.&lt;/P&gt;
&lt;P&gt;' Case &amp;amp;h8007052E ' Logon failure: unknown user name or bad password.&lt;/P&gt;
&lt;P&gt;' There was a some kind of fatal error.&lt;/P&gt;
&lt;P&gt;If ErrDesc &amp;lt;&amp;gt; "" then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapNetworkDriveEx = ErrDesc&lt;/P&gt;
&lt;P&gt;Else&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapNetworkDriveEx = "Unable to map UNC Path " &amp;amp; sShare &amp;amp; " :" &amp;amp; "( 0x" &amp;amp; hex(HasError) &amp;amp; " ) "&lt;/P&gt;
&lt;P&gt;End if&lt;/P&gt;
&lt;P&gt;oLogging.CreateEntry MapNetworkDriveEx &amp;amp; "", iLogType&lt;/P&gt;
&lt;P&gt;Exit function&lt;/P&gt;
&lt;P&gt;End select&lt;/P&gt;
&lt;P&gt;With this code:&lt;/P&gt;
&lt;P&gt;Case Else&lt;/P&gt;
&lt;P&gt;Err.Clear&lt;/P&gt;
&lt;P&gt;On Error Resume Next&lt;/P&gt;
&lt;P&gt;oNetwork.MapNetworkDrive&amp;nbsp; chr(sDrive)&amp;amp;":", sShare, False&lt;/P&gt;
&lt;P&gt;HasError = err.number&lt;/P&gt;
&lt;P&gt;ErrDesc = err.Description&lt;/P&gt;
&lt;P&gt;On Error Goto 0&lt;/P&gt;
&lt;P&gt;If Err.Number &amp;lt;&amp;gt; 0 Then&lt;/P&gt;
&lt;P&gt;' There was a some kind of fatal error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If ErrDesc &amp;lt;&amp;gt; "" then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapNetworkDriveEx = ErrDesc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MapNetworkDriveEx = "Unable to map UNC Path " &amp;amp; sShare &amp;amp; " :" &amp;amp; "( 0x" &amp;amp; hex(HasError) &amp;amp; " ) "&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End if&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oLogging.CreateEntry MapNetworkDriveEx &amp;amp; "", iLogType&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit function&lt;/P&gt;
&lt;P&gt;Else&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Function&lt;/P&gt;
&lt;P&gt;End If&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;End select&lt;/P&gt;
&lt;P&gt;We thank you very much for your feedback and assistance in helping us fix this problem.&amp;nbsp; We are currently working on a KB article that decribes these steps and will update once that KB article is available&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3282003" width="1" height="1"&gt;</description></item><item><title>MDT 2010 is Released!</title><link>http://blogs.technet.com/msdeployment/archive/2009/09/09/mdt-2010-is-released.aspx</link><pubDate>Wed, 09 Sep 2009 03:25:11 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3279921</guid><dc:creator>msdeployment</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3279921.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3279921</wfw:commentRss><description>&lt;p&gt;We are pleased to announce the release of MDT 2010 available for download &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=3bd8561f-77ac-4400-a0c1-fe871c461a89&amp;amp;displaylang=en&amp;amp;tm" target="_blank"&gt;here&lt;/a&gt;.&amp;#160; &lt;/p&gt;  &lt;p&gt;MDT 2010 has been in planning and development for a little over a year and is our largest release to date with over 70% of our code changing since MDT 2008.&amp;#160; MDT 2010 has also been tested throughout our Beta and Release Candidate versions by well over 10,000 IT professionals around the world.&amp;#160; We appreciate all of the feedback you have given and without your help this release would not have been possible.&lt;/p&gt;  &lt;p&gt;Michael Niehaus did a great series of blog posts on most of the new features of MDT 2010.&amp;#160; You can review those posts here: &lt;a href="http://blogs.technet.com/mniehaus/search.aspx?q=MDT+2010+New+Feature&amp;amp;p=1"&gt;http://blogs.technet.com/mniehaus/search.aspx?q=MDT+2010+New+Feature&amp;amp;p=1&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Please make sure you review the release notes for instructions on how to upgrade from MDT 2008 or one of the beta releases of MDT 2010.&lt;/p&gt;  &lt;p&gt;THANK YOU EVERYONE FOR MAKING THIS RELEASE POSSIBLE!&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3279921" width="1" height="1"&gt;</description></item><item><title>MDT 2010 Release Candidate is Now Available for Download!</title><link>http://blogs.technet.com/msdeployment/archive/2009/08/19/mdt-2010-release-candidate-is-now-available-for-download.aspx</link><pubDate>Wed, 19 Aug 2009 23:01:48 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3275079</guid><dc:creator>msdeployment</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3275079.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3275079</wfw:commentRss><description>&lt;p&gt;We are pleased to announce the immediate availability of the release candidate of MDT 2010.&amp;#160; This release contains numerous bug fixes since MDT 2010 Beta 2.&amp;#160; MDT 2010 RC has been tested and will work with Windows 7 RTM and Windows Server 2008 R2 RTM as well as all previously supported operating systems.&amp;#160; &lt;/p&gt;  &lt;p&gt;A BIG Thank You to all of you who tested and have given feedback for MDT 2010 Beta 2.&amp;#160; We were able to fix several bugs and push through some design changes based on your feedback.&amp;#160; Now is the time for you to verify the bug fixes and continue to provide feedback as we work towards the release of MDT 2010.&lt;/p&gt;  &lt;p&gt;As with any release please make sure you read through the release notes to understand the known issues with this release and make sure you have a backup of your deployment environment before you upgrade to MDT 2010 RC.&lt;/p&gt;  &lt;p&gt;If you have not signed up on our connect site you can still do so here: &lt;a title="https://connect.microsoft.com/site/sitehome.aspx?SiteID=14" href="https://connect.microsoft.com/site/sitehome.aspx?SiteID=14"&gt;https://connect.microsoft.com/site/sitehome.aspx?SiteID=14&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Thank you very much for your support and we hope you continue to provide feedback!&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3275079" width="1" height="1"&gt;</description></item><item><title>Deploying Windows Vista SP2 and Windows Server 2008 SP2 with MDT 2008 Update 1</title><link>http://blogs.technet.com/msdeployment/archive/2009/07/06/deploying-windows-vista-sp2-and-windows-server-2008-sp2-with-mdt-2008-update-1.aspx</link><pubDate>Mon, 06 Jul 2009 20:35:44 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3261619</guid><dc:creator>msdeployment</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3261619.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3261619</wfw:commentRss><description>&lt;p&gt;We have released a new KB article that describes the steps needed to deploy Windows Vista SP2 and Windows Server 2008 SP2 with MDT 2008 Update 1.&amp;#160; For the most part the deployments will work without problems.&amp;#160; However if you want to deploy SP2 language packs there are some modifications necessary in the scripts.&lt;/p&gt;  &lt;p&gt;   &lt;br /&gt;See the KB article for more information: &lt;a href="http://support.microsoft.com/?id=971943"&gt;http://support.microsoft.com/?id=971943&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3261619" width="1" height="1"&gt;</description></item><item><title>Microsoft Deployment Toolkit 2010 Beta 2 is now Available for Download!</title><link>http://blogs.technet.com/msdeployment/archive/2009/06/26/microsoft-deployment-toolkit-2010-beta-2-is-now-available-for-download.aspx</link><pubDate>Fri, 26 Jun 2009 19:06:14 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3259024</guid><dc:creator>msdeployment</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3259024.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3259024</wfw:commentRss><description>&lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;font color="#e87400" size="4"&gt;Get ready to deploy Windows 7 and Windows Server 2008 R2 with Microsoft Deployment Toolkit 2010 Beta 2.&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The Windows&lt;sup&gt;&amp;#174;&lt;/sup&gt; 7 and Windows Server&lt;sup&gt;&amp;#174;&lt;/sup&gt; 2008 R2 launches are just around the corner. As you prepare to deploy these operating systems, get a jump start with Microsoft&lt;sup&gt;&amp;#174;&lt;/sup&gt; Deployment Toolkit (MDT) 2010 Beta 2. Leverage this Solution Accelerator to achieve efficient, cost-effective deployment of Windows 7 and Windows Server 2008 R2.&lt;/p&gt;  &lt;p&gt;MDT 2010 is the next version of Microsoft Deployment Toolkit, a Solution Accelerator for operating system and application deployment. New features such as flexible driver management, optimized user interface workflow, and Windows PowerShell&lt;sup&gt;&amp;#8482;&lt;/sup&gt; can simplify deployment and make your job easier. MDT 2010 will support deployment of Windows 7 and Windows Server 2008 R2 in addition to deployment of Windows Vista&lt;sup&gt;&amp;#174;&lt;/sup&gt;, Windows Server 2008, Windows Server 2003, and Windows XP. Join the beta now! &lt;/p&gt;  &lt;p&gt;Microsoft Deployment Toolkit is the recommended process and toolset for automating desktop and server deployment. MDT provides you with the following benefits: &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Unified tools and processes required for desktop and server deployment in a common deployment console and collection of guidance. &lt;/li&gt;    &lt;li&gt;Reduced deployment time and standardized desktop and server images, along with improved security and ongoing configuration management. &lt;/li&gt;    &lt;li&gt;Fully automated zero touch installation deployments by leveraging System Center Configuration Manager 2007 Service Pack 2 beta and Windows deployment tools. For those without a System Center Configuration Manager 2007 infrastructure, MDT leverages Windows deployment tools for lite touch installation deployments.&amp;#160; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;font color="#d96c00" size="4"&gt;New Functionality&lt;/font&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;em&gt;&lt;font color="#d96c00" size="4"&gt;&lt;/font&gt;&lt;/em&gt;&lt;/strong&gt;Microsoft Deployment Toolkit 2010 Beta 2 is a significant upgrade over MDT 2010 Beta 1.&amp;#160; MDT 2010 Beta 2 adds the following new features and functionality:&lt;/p&gt;  &lt;p&gt;&lt;strong&gt;Deployment Workbench Enhancements&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Manage multiple Deployment Shares from a single Deployment Workbench including local Deployment Shares or from a network location including standalone DFS shares&lt;/li&gt;    &lt;li&gt;Replicate content between Deployment Shares through &amp;quot;Linked Deployment Shares&amp;quot; and use selection profiles to manage what content gets replicated&lt;/li&gt;    &lt;li&gt;Multiple users can now interact with the same Deployment Share&lt;/li&gt;    &lt;li&gt;Create folders to manage Drivers, Task Sequences, Operating Systems, and OS Packages&lt;/li&gt;    &lt;li&gt;Drag-and-drop, copy-and-paste, and cut-and-paste between folders or between Deployment Shares&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Powershell Capabilities&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Anything done from within the Deployment Workbench can be scripted through Powershell&lt;/li&gt;    &lt;li&gt;A drive provider has been added for enumerating folders, items, and properties&lt;/li&gt;    &lt;li&gt;Cmdlets can be used for importing content such as Drivers, Operating Systems, Task Sequences, etc.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Task Sequence and Script Enhancements&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Improved Diagnostics and Logging with more specific error messages&lt;/li&gt;    &lt;li&gt;Real time logging directly to a network share&lt;/li&gt;    &lt;li&gt;Enhanced log collection&lt;/li&gt;    &lt;li&gt;Two new task sequence templates (Capture Only, Post OS Installation)&lt;/li&gt;    &lt;li&gt;Pause and Resume a task sequence&lt;/li&gt;    &lt;li&gt;Automatically detect and fix domain join problems&lt;/li&gt;    &lt;li&gt;Improved user interface for client wizards&lt;/li&gt;    &lt;li&gt;Deploy to a specified disk or partition (Vista or later)&lt;/li&gt;    &lt;li&gt;Refresh Bitlocker encrypted systems to Windows 7 without decrypting the contents of the disk&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;strong&gt;Configuration Manager Enhancements&lt;/strong&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Improved wizard for creating task sequences&lt;/li&gt;    &lt;li&gt;USMT 4.0 hard-link support&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;font color="#dd6f00" size="4"&gt;Next Steps&lt;/font&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Microsoft Deployment Toolkit (MDT) 2010 Beta 2 is now available!&lt;/b&gt; To invite customers and partners to join the &lt;b&gt;Beta&lt;/b&gt; program, forward them the information in this e-mail message.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;a href="https://connect.microsoft.com/InvitationUse.aspx?ProgramID=1646&amp;amp;InvitationID=MDTH-PJBM-CBVJ&amp;amp;SiteID=14"&gt;Download the Microsoft Deployment Toolkit 2010 Beta 2&lt;/a&gt; and give us your feedback (Live ID login and registration required). If already a member, &lt;a href="https://connect.microsoft.com/content/content.aspx?ContentID=12463&amp;amp;SiteID=14"&gt;click here&lt;/a&gt;.&lt;/li&gt;    &lt;li&gt;Learn more about this toolkit by visiting &lt;a href="http://www.microsoft.com/mdt"&gt;MDT TechNet site&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3259024" width="1" height="1"&gt;</description></item><item><title>Microsoft Deployment Toolkit 2010 Beta 1 is now available!</title><link>http://blogs.technet.com/msdeployment/archive/2009/01/09/microsoft-deployment-toolkit-2010-beta-1-is-now-available.aspx</link><pubDate>Sat, 10 Jan 2009 01:59:46 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3179521</guid><dc:creator>msdeployment</dc:creator><slash:comments>9</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3179521.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3179521</wfw:commentRss><description>&lt;p&gt;Open Beta for MDT 2010&amp;#8212;Join Now&lt;/p&gt;  &lt;p&gt;&lt;i&gt;Microsoft Deployment Toolkit 2010&lt;/i&gt;&lt;/p&gt;  &lt;p&gt;Deploy Windows 7 beta with Microsoft Deployment Toolkit 2010. Join the beta at &lt;a href="http://connect.microsoft.com"&gt;http://connect.microsoft.com&lt;/a&gt;.&amp;#160; Follow the instructions on this blog post to get connected to the Beta: &lt;a title="http://blogs.technet.com/msdeployment/archive/2008/12/03/a-new-version-is-coming-soon.aspx" href="http://blogs.technet.com/msdeployment/archive/2008/12/03/a-new-version-is-coming-soon.aspx"&gt;http://blogs.technet.com/msdeployment/archive/2008/12/03/a-new-version-is-coming-soon.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;MDT 2010 is the next version of Microsoft Deployment Toolkit, a solution accelerator for operating system and application deployment. New features like flexible driver management, optimized transaction processing, and access to distribution shares from any location simplify deployment and make your job easier. Deploy faster and easier with MDT 2010. Join the beta now.&lt;/p&gt;  &lt;p&gt;Tell us what you think! Join the beta and send us your honest feedback. We appreciate your input. &lt;/p&gt;  &lt;p&gt;Microsoft Deployment Toolkit is the fourth generation deployment accelerator from Microsoft. It is the recommended process and toolset to automate desktop and server deployment. MDT benefits you by providing:&lt;/p&gt;  &lt;p&gt;&amp;#183; Detailed guidance and job aids for every organized role involved with large-scale deployment projects.&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Unified tools and processes required for desktop and server deployment in a common deployment console and collection of guidance.&lt;/li&gt;    &lt;li&gt;Reduced deployment time, standardized desktop and server images, along with improved security and ongoing configuration management.&amp;#160; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&lt;b&gt;New Functionality&lt;/b&gt;&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Support for deploying Windows 7, Windows Server 2008 R2 in addition to deploying Windows Vista SP1, Windows Server 2008, Windows XP SP3, and Windows 2003 SP2&lt;/li&gt;    &lt;li&gt;Hard Link Migrations using USMT 4 for Refresh scenarios which will dramatically reduce your user state backup and restore time&lt;/li&gt;    &lt;li&gt;Integration of the new Windows AIK 2.0 Beta toolset such as DISM and BCDBOOT, and Windows PE 3.0&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Join the Beta&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Additional infrastructure deployment tools are available as beta releases on the Connect Web site. They are open beta downloads. See below for instructions on how to access the Connect Web site.&lt;/p&gt;  &lt;p&gt;To join the Microsoft Deployment Toolkit 2010 Beta, follow these steps:&lt;/p&gt;  &lt;p&gt;1. Visit the Microsoft Deployment Toolkit Beta at &lt;a href="http://connect.microsoft.com"&gt;http://connect.microsoft.com&lt;/a&gt;. &lt;/p&gt;  &lt;p&gt;2. Sign in using a valid Windows Live ID to continue to the Invitations page. &lt;/p&gt;  &lt;p&gt;3. Scroll down to Microsoft Deployment Connection. &lt;/p&gt;  &lt;p&gt;If you have not previously registered with Microsoft Connect, you might be required to register before continuing with the invitation process.&lt;/p&gt;  &lt;p&gt;If the link in step 1 does not work for you, copy the link and paste it into the Web browser address bar. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;     &lt;br /&gt;Related Resources&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;Check out other Solution Accelerators! Visit the SAT page on TechNet, &lt;a href="http://www.microsoft.com/solutionaccelerators"&gt;http://www.microsoft.com/solutionaccelerators&lt;/a&gt;, for additional information.&lt;/p&gt;  &lt;p&gt;We appreciate your comments and feedback, please send mail to &lt;a href="mailto:satfdbk@microsoft.com"&gt;satfdbk@microsoft.com&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3179521" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/msdeployment/archive/tags/MDT+2010/default.aspx">MDT 2010</category></item><item><title>A new version is coming soon!</title><link>http://blogs.technet.com/msdeployment/archive/2008/12/03/a-new-version-is-coming-soon.aspx</link><pubDate>Wed, 03 Dec 2008 21:50:08 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3163481</guid><dc:creator>msdeployment</dc:creator><slash:comments>9</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3163481.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3163481</wfw:commentRss><description>&lt;p&gt;The latest version of the Microsoft Deployment Toolkit, MDT 2010, is currently being developed.&amp;#160; This new version, which is due to be released shortly after the Windows 7 release, will offer:&lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;Support for Windows 7 and Windows Server 2008 R2.&lt;/li&gt;    &lt;li&gt;Deployment Workbench and script architecture improvements.&lt;/li&gt;    &lt;li&gt;Documentation improvements.&lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;The first beta release will be made available in the coming weeks.&amp;#160; Please sign up for at the &lt;a href="http://connect.microsoft.com"&gt;Connect website&lt;/a&gt; to be notified as soon as it is available, if you haven’t already done so.&amp;#160; To sign up, follow these simple steps:&lt;/p&gt;  &lt;ol&gt;   &lt;li&gt;Access &lt;a href="http://connect.microsoft.com"&gt;http://connect.microsoft.com&lt;/a&gt;.&lt;/li&gt;    &lt;li&gt;Sign on using any valid Live ID.&lt;/li&gt;    &lt;li&gt;From the Connection Directory, find the “Solution Accelerators” connection.&lt;/li&gt;    &lt;li&gt;Apply for the “Microsoft Deployment Toolkit” program.&amp;#160; Approval is automatic.&lt;/li&gt; &lt;/ol&gt;  &lt;p&gt;We look forward to receiving your feedback on this new MDT 2010 version and encourage you to use the Connect site for that feedback.&lt;/p&gt;  &lt;p&gt;If you have suggestions, comments, or concerns about MDT 2008 (the current release), please submit that through the Connect site as well.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3163481" width="1" height="1"&gt;</description></item><item><title>Microsoft Deployment Team featured on the Technet Radio Podcast</title><link>http://blogs.technet.com/msdeployment/archive/2008/10/28/microsoft-deployment-team-featured-on-the-technet-radio-podcast.aspx</link><pubDate>Tue, 28 Oct 2008 20:22:52 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3143342</guid><dc:creator>msdeployment</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3143342.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3143342</wfw:commentRss><description>&lt;p&gt;We recently had the honor of sitting down with Technet Radio and recording a series of FAQ's about MDT 2008 and a brief discussion on the next version of MDT.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;You can download the podcast directly from here:&lt;/p&gt;  &lt;p&gt;&lt;a href="http://download.microsoft.com/download/e/7/1/e716ff06-6b75-4c18-a2aa-9c46c6072be0/TechNetRadio10282008-web.wma"&gt;WMA&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://download.microsoft.com/download/e/7/1/e716ff06-6b75-4c18-a2aa-9c46c6072be0/TechNetRadio10282008-hi-web.mp3"&gt;MP3 High Bandwidth&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://download.microsoft.com/download/e/7/1/e716ff06-6b75-4c18-a2aa-9c46c6072be0/TechNetRadio10282008-lo-web.mp3"&gt;MP3 Low Bandwidth&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Enjoy!&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3143342" width="1" height="1"&gt;</description></item><item><title>Questions for the MDT team?</title><link>http://blogs.technet.com/msdeployment/archive/2008/10/14/questions-for-the-mdt-team.aspx</link><pubDate>Tue, 14 Oct 2008 19:35:12 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3136429</guid><dc:creator>msdeployment</dc:creator><slash:comments>7</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3136429.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3136429</wfw:commentRss><description>&lt;p&gt;We are going to be featured on the Technet Radio podcast and we want to know what you would like us to talk about!&amp;#160; Now is your chance to get your deployment questions answered or here us talk about a topic that you have always wondered about.&lt;/p&gt;  &lt;p&gt;Feel free to leave your topics as comments or email us through the link.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Thanks!&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3136429" width="1" height="1"&gt;</description></item><item><title>TechNet Presents: MCS Talks Enterprise Architecture Session 6 – Desktop Deployment</title><link>http://blogs.technet.com/msdeployment/archive/2008/10/09/technet-presents-mcs-talks-enterprise-architecture-session-6-desktop-deployment.aspx</link><pubDate>Thu, 09 Oct 2008 22:43:28 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3134695</guid><dc:creator>msdeployment</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3134695.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3134695</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032390854&amp;amp;Culture=en-GB"&gt;Register here!&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;Join consultants from Microsoft&amp;#8217;s Consulting Services for the 6th session in the MCS Talks Infrastructure Architecture series.&amp;#160; In this session we&amp;#8217;ll discuss our approach to deploying a new desktop to an enterprise environment. We&amp;#8217;ll discuss desktop deployment strategies and technologies including the importance of understanding your existing infrastructure and some of the options for auditing your current environment. We&amp;#8217;ll also cover some important considerations for preparing your infrastructure for a desktop deployment, what technologies are available and how to best to implement them to support an enterprise deployment. Finally we&amp;#8217;ll wrap up the session by having a brief look at the multitude of virtualization technologies and how they can be used to simplify and accelerate a deployment project.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3134695" width="1" height="1"&gt;</description></item><item><title>How to upgrade to MDT 2008 Update 1: Lite Touch</title><link>http://blogs.technet.com/msdeployment/archive/2008/08/05/how-to-upgrade-to-mdt-2008-update-1-lite-touch.aspx</link><pubDate>Tue, 05 Aug 2008 20:56:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3099050</guid><dc:creator>msdeployment</dc:creator><slash:comments>10</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3099050.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3099050</wfw:commentRss><description>&lt;P&gt;We've received a number of questions over the past few days on the best way to upgrade from MDT 2008 to MDT 2008 Update 1 without losing any settings.&amp;nbsp; The most common problem that has been seen is that the Deployment Points are no longer present after installing MDT 2008 Update 1.&amp;nbsp; The following instructions will allow you to upgrade and maintain all of your existing settings:&lt;/P&gt;
&lt;P&gt;1.&amp;nbsp; Before installing MDT 2008 Update make a backup of the Deploy.XML file.&amp;nbsp; The file is located by default in C:\Program Files\Microsoft Deployment Toolkit\Control&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/deployxml_2.jpg" mce_href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/deployxml_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=184 alt=deployxml src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/deployxml_thumb.jpg" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/deployxml_thumb.jpg"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;2.&amp;nbsp; Install the MDT 2008 Update 1 MSI&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp; Launch the Deployment Workbench and right click on &lt;STRONG&gt;Distribution Share &lt;/STRONG&gt;and choose &lt;STRONG&gt;Create distribution share directory&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/DistributionShare_2.jpg" mce_href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/DistributionShare_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=125 alt=DistributionShare src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/DistributionShare_thumb.jpg" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/DistributionShare_thumb.jpg"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;4.&amp;nbsp; A wizard will then be presented.&amp;nbsp; Choose &lt;STRONG&gt;Upgrade an existing distribution share&lt;/STRONG&gt; and type or browse to the path of your existing distribution share.&amp;nbsp; Check the check box to &lt;STRONG&gt;Backup existing scripts and configuration files&lt;/STRONG&gt; and click on &lt;STRONG&gt;Finish &lt;/STRONG&gt;(the files will be backed up to the Distribution\Backup folder)&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpgradeDistributionShare_2.jpg" mce_href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpgradeDistributionShare_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=201 alt=UpgradeDistributionShare src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpgradeDistributionShare_thumb.jpg" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpgradeDistributionShare_thumb.jpg"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;5.&amp;nbsp; Close the Deployment Workbench and restore the Deploy.xml that was backed up earler to C:\Program Files\Microsoft Deployment Toolkit\Control, overwriting the existing file&lt;/P&gt;
&lt;P&gt;6.&amp;nbsp; Launch the Deployment Workbench, navigate to the Deployment Points and your Deployment Points should now be visible.&lt;/P&gt;
&lt;P&gt;7.&amp;nbsp; Right click on each Deployment Point and choose &lt;STRONG&gt;Update.&amp;nbsp; &lt;/STRONG&gt;This will update all of the Windows PE images with the correct version of the scripts&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpdateDP_2.jpg" mce_href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpdateDP_2.jpg"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=102 alt=UpdateDP src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpdateDP_thumb.jpg" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/HowtoupgradetoMDT2008Update1LiteTouch_99A3/UpdateDP_thumb.jpg"&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;8.&amp;nbsp; If you are using WDS, you will now need to replace your boot image in WDS with the updated Lite Touch WIM file&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3099050" width="1" height="1"&gt;</description></item><item><title>Why does the Deployment Workbench show version 4.1 after installing MDT 2008 Update 1?</title><link>http://blogs.technet.com/msdeployment/archive/2008/08/05/why-does-the-deployment-workbench-show-version-4-1-after-installing-mdt-2008-update-1.aspx</link><pubDate>Tue, 05 Aug 2008 02:09:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3098548</guid><dc:creator>msdeployment</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3098548.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3098548</wfw:commentRss><description>&lt;P&gt;We've received several questions over the past few days regarding the Help, About Microsoft Deployment Workbench showing 4.1 even after the upgrade to MDT 2008 Update 1:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_2.png" mce_href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_2.png"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=183 alt=image src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_thumb.png" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;The reason why the Help, About Microsoft Deployment Workbench shows Version 4.1 is due to caching that can occur with certain DLL's.&amp;nbsp; In this case the value of the previous installation of that screen can be found here:&lt;/P&gt;
&lt;P&gt;HKEY_CURRENT_USER\Software\Classes\Local Settings\Software\Microsoft\Windows\Shell\MuiCache\@C:\Program Files\Microsoft Deployment Toolkit\Bin\Microsoft.BDD.WorkbenchResources.dll,-105&lt;/P&gt;
&lt;P&gt;If you previously had MDT 2008 installed the value&amp;nbsp;was cached in this location and unfortunately does not update properly after the installation of MDT 2008 Update 1.&lt;/P&gt;
&lt;P&gt;So how do you determine if you have the correct version installed?&amp;nbsp; The correct version of MDT 2008 Update 1 is 4.2.523.40.&amp;nbsp; This can be found by going into Add/Remove Programs.&amp;nbsp; You should see an entry like the following:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_4.png" mce_href="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_4.png"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=12 alt=image src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_thumb_1.png" width=244 border=0 mce_src="http://blogs.technet.com/blogfiles/msdeployment/WindowsLiveWriter/Whydoesth.1afterinstallingMDT2008Update1_E328/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;If the About window really bothers you, you can delete the registry entry mentioned above and it will then update with the correct version number. :)&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3098548" width="1" height="1"&gt;</description></item><item><title>Microsoft Deployment Toolkit 2008 Update 1 is now Available</title><link>http://blogs.technet.com/msdeployment/archive/2008/08/01/microsoft-deployment-toolkit-2008-update-1-is-now-available.aspx</link><pubDate>Fri, 01 Aug 2008 02:21:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3096342</guid><dc:creator>msdeployment</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3096342.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3096342</wfw:commentRss><description>&lt;P class=MsoBodyText style="MARGIN: 12pt 0in 0pt"&gt;We are pleased to announce the release of our first update to Microsoft Deployment Toolkit 2008&amp;nbsp; (MDT 2008).&amp;nbsp; We have added two major features:&amp;nbsp; OEM preload scenarios for Lite Touch &lt;SPAN style="COLOR: #1f497d"&gt;I&lt;/SPAN&gt;nstallation and Zero Touch Installation with System Center Configuration Manager 2007 and a new management pack for System Center Operations Manager 2007 SP1.&amp;nbsp; Minor updates include bug fixes and design changes to override driver platforms as well as the ability to inject all drivers into Windows PE.&amp;nbsp; &lt;/P&gt;
&lt;P class=MsoBodyText style="MARGIN: 12pt 0in 0pt"&gt;Get MDT 2008 Update 1 and the new Quick Start Guides from the &lt;A href="http://www.microsoft.com/downloads/details.aspx?familyid=3bd8561f-77ac-4400-a0c1-fe871c461a89&amp;amp;displaylang=en&amp;amp;tm%20?SAMI_CAMPAIGN_TYPE=Email&amp;amp;SAMI_CAMPAIGN_NAME=MDT2008UPD1_MDTDL"&gt;&lt;FONT color=#0066ff&gt;Download Center&lt;/FONT&gt;&lt;/A&gt;. All of the latest documentation can be found within&amp;nbsp; updated and&amp;nbsp; searchable help files.&amp;nbsp; However, if you would like a full collection of the Word documents, download it &lt;A href="http://go.microsoft.com/fwlink/?LinkId=123906"&gt;&lt;FONT color=#0066ff&gt;here&lt;/FONT&gt;&lt;/A&gt;.&lt;/P&gt;
&lt;P class=sidebarBodyText style="MARGIN: 8.25pt 0in 0pt"&gt;&lt;FONT color=#112e58&gt;Add these great deployment blogs to your list of resources: these experts are always sharing their latest knowledge around deployment.&amp;nbsp; &lt;/FONT&gt;&lt;A href="http://blogs.technet.com/msdeployment"&gt;MS Deployment&lt;/A&gt;&lt;FONT color=#112e58&gt;, &lt;/FONT&gt;&lt;A href="http://blogs.technet.com/deploymentguys"&gt;Deployment Guys&lt;/A&gt;&lt;FONT color=#112e58&gt;, &lt;/FONT&gt;&lt;A href="http://blogs.technet.com/mniehaus"&gt;Michael Niehaus&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3096342" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/msdeployment/archive/tags/General+Information/default.aspx">General Information</category><category domain="http://blogs.technet.com/msdeployment/archive/tags/Microsoft+Deployment/default.aspx">Microsoft Deployment</category></item><item><title>The reference computer does not start Windows PE when you try to perform an image capture operation of a non-U.S. English version of a Windows operating system</title><link>http://blogs.technet.com/msdeployment/archive/2008/06/05/the-reference-computer-does-not-start-windows-pe-when-you-try-to-perform-an-image-capture-operation-of-a-non-u-s-english-version-of-a-windows-operating-system.aspx</link><pubDate>Thu, 05 Jun 2008 21:28:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3066630</guid><dc:creator>msdeployment</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3066630.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3066630</wfw:commentRss><description>&lt;P&gt;That is a really long title to a recent KB article that has been posted about an issue with MDT 2008.&amp;nbsp; You can get the full details here: &lt;A href="http://support.microsoft.com/?id=952573"&gt;http://support.microsoft.com/?id=952573&lt;/A&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note the Applies To section should state Microsoft Deployment Toolkit 2008.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3066630" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/msdeployment/archive/tags/Microsoft+Deployment/default.aspx">Microsoft Deployment</category><category domain="http://blogs.technet.com/msdeployment/archive/tags/Microsoft+Deployment+FAQ/default.aspx">Microsoft Deployment FAQ</category></item><item><title>Microsoft Deployment Toolkit 2008 Source Code Released </title><link>http://blogs.technet.com/msdeployment/archive/2008/05/01/microsoft-deployment-toolkit-2008-source-code-released.aspx</link><pubDate>Thu, 01 May 2008 23:05:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3048289</guid><dc:creator>msdeployment</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/msdeployment/comments/3048289.aspx</comments><wfw:commentRss>http://blogs.technet.com/msdeployment/commentrss.aspx?PostID=3048289</wfw:commentRss><description>&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt; TEXT-ALIGN: center" align=center&gt;&lt;B&gt;&lt;SPAN style="FONT-SIZE: 14pt"&gt;&lt;FONT face=Calibri&gt;Source Code for Microsoft Deployment Toolkit 2008 has been released&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Calibri size=3&gt;We have released Microsoft Deployment Toolkit 2008 (build number 4.1.523.0) source code for customers and partners who want to make modifications, enhancements, or bug fixes to MDT’s components. Source Code is current as of the March 2008 release of Microsoft Deployment Toolkit.&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;FONT face=Calibri size=3&gt;Source code for MDT 2008 can be downloaded from Microsoft download center: &lt;/FONT&gt;&lt;A href="http://go.microsoft.com/fwlink/?LinkId=117775"&gt;&lt;FONT face=Calibri size=3&gt;http://go.microsoft.com/fwlink/?LinkId=117775&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3048289" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/msdeployment/archive/tags/General+Information/default.aspx">General Information</category><category domain="http://blogs.technet.com/msdeployment/archive/tags/Microsoft+Deployment/default.aspx">Microsoft Deployment</category></item></channel></rss>