UserTile Automation June 23, 2010
Posted by Micah Rowland in USMT, VBscript, Windows 7.4 comments
Recently a customer requested that two accounts be created during the MDT process and required each to have a preset user account picture (referred to by Windows as the User Tile). There are a number of ways to accomplish this, USMT/Easy Transfer wizard being the easiest. However, due to the processes they already had built into the base image, I decided the best tack was to investigate the actual process employed in storing the User Tile and build automation that could quickly accomodate changes to the specifications of which image to use. After a quick search of the web, it seems that this particular problem, programatically changing the User Tile has not yet found a solution. I present to you my findings along with a sample script to tackle this seemingly simple manual process.
The first step in automating any process is to do it manually first and watch what happens. I rely on the Sysinternals tool Process Monitor as well as Process Explorer for most of my research. Launching Process Explorer as an administrator led me down a few dead ends. It was only after running Process Explorer in the System context using PSExec with the -s and -i switches that I was able to locate the location that Windows 7 uses to store the user tile.
The User Tiles configuration information is stored in Windows registry at HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\########, where ######## is a unique 8 digit hexadecimal ID, in as a binary value named UserTile. But how can we cross reference a username to this 8-digit ID? Glad you asked!
Taking a further look at the registry key, you’ll notice that beneath the user ids, there is another key called Names. If you expand this key you’ll see a list of all local user accounts on the system. Upon opening any of the user keys you’ll notices that only a default value exists. However, take a look at the value type… It is not a standard type, but a hexidecimal number 0x### where the ### id crossreferences nicely with the list of user ids above. In our script we need only pad this value with leading 0′s until it reaches the desired 8-digits. Trying to retrieve this hexidecimal “type” throws exceptions in nearly every method I tried. Exporting the key to a .reg file gave me the output I needed to be able to search for a specific username and retrieve its id.
The SAM Hive of the registry is not generally accessible to any user accounts and is configured, by default, to only be accessed by the System account. To maintain security, both the read and the write operations necessary to modify the UserTiles programmatically are accomplished by executing the operations in the System context. Execution in the system context is accomplished by utilizing the PSExec tool.
When a user interactively changes the UserTile by means of the User Account control panel, Windows resizes the image specified by the user to 128×128 and saves new image as a 24-bit bitmap file in the C:\ProgramData\Microsoft\User Account Pictures\ folder as USERNAME.bmp. The bitmap is then stored in the registry in the SAM and the user’s contact card is updated.
The binary data is composed of a header followed by a payload containing the binary graphic used for the UserTile and closed with a footer that contains the path to the file used as the UserTile. The header is 16 bytes long.
- 12-bytes (seem to be constant at 01 00 00 00 03 00 00 00 01 00 00 00)
- 4-byte field representing the size of the payload
The payload data reveals that the image stored in the registry is 126×126 pixels, presumably to make up for the 1 pixel wide border around the image when displayed on the logon screen and on the start menu. Further, the image is stored in 16-bit color depth using BI_BITFIELDS compression.
The footer contains the type of image file used and the location of the file used using Unicode (2-bytes per character). The format is as follows:
- 4-byte field (purpose unknown, possibly the length of the following field)
- A null-terminated Unicode string representing the file type
- Eg. “bmp” = 62 00 6D 00 70 00 00 00
- 4-byte field (purpose unknown, always 02 00 00 00)
- 4-byte field representing the payload (bitmap) size in bytes
- A null-terminated Unicode string representing the file location padded to the nearest 4 bytes.
Phew! Needless to say, this level of detail is not necessary for part 1 of this post, however in crafting a truely dynamic programmatic approach to changing the uer tile, we will need this information.
Solution:
It should be possible to engineer an application that accepts a username and a bitmap file to use. However, for part 1, it is simpler to export the registry keys from a sample machine using either the reg.exe or the regedit.exe utility under the System context using PSExec.
When scripting this automation, we must be aware that the first time PSExec is run, a EULA must be accepted. To avoid this, the following registry file is imported (AcceptPSExecEULA.reg):
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Sysinternals\PsExec] "EulaAccepted"=dword:00000001 |
The following script was created to accomplish the goal of changing the UserTiles:
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Title: User Tile Change Script ' Author: Micah Rowland (Xtreme Consulting) ' Date: 07/14/2010 ' Desc: This script is designed to programatically replace ' a single local user's User Tile on Windows Vista ' and above. ' Prereq: This script requires the use of PSExec available ' from http://live.sysinternals.com/psexec.exe ' Usage: UserTile.vbs USERNAME USERTILEFILE ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' CONST FORREADING = 1 CONST FORWRITING = 2 set objShell = CreateObject("Wscript.Shell") set objFSO = CreateObject("Scripting.FileSystemObject") set objArgs = Wscript.Arguments set objShell = CreateObject("Wscript.shell") if CheckArgs() <> "" then Wscript.echo Checkargs() & vbcrlf wscript.echo "Arguments Invalid. Usage: ChangeUserPicture.vbs USERNAME UserTileFile" wscript.quit() end if strUsername = objArgs(0) strUserTileFile = objArgs(1) strUserIndex = GetUserIndex() set objFile = objFSO.GetFile(strUserTileFile) set objTS = objFile.OpenAsTextStream(1) strUserTile = objTS.ReadAll wscript.echo strUserTile strRegFile = objShell.ExpandEnvironmentStrings("%temp%") & "\UserIndexes2.reg" set objRegFile = objFSO.OpenTextFile(strRegFile, ForWriting, true) contents = "Windows Registry Editor Version 5.00" & vbcrlf & vbcrlf & "[HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\" & strUserIndex & "]" & vbcrlf & strUserTile objRegFile.Write contents objRegFile.Close strImport = "PSEXEC -S -I reg import " & strRegFile objShell.Run strImport Function GetUserIndex ' This function exports the Names key of the SAM from the registry to determine a match between the user account provided ' and its hex ID for use in creating the new registry file for import. Because the .reg file is exported in Unicode format ' we use the type command to pipe it from stdout to a new text file. strUsername = objArgs(0) strUserTileFile = objArgs(1) objShell.run "cmd /c reg export HKLM\SAM\SAM\Domains\Account\Users\Names %temp%\UserIndexes.reg /y" wscript.sleep(500) objShell.run "CMD /C type %temp%\userindexes.reg > %temp%\userindexes.txt" wscript.sleep(500) set objFile = objFSO.GetFile(objShell.ExpandEnvironmentStrings("%temp%") & "\userindexes.txt") set objRegExport = objFile.OpenAsTextStream(FORREADING) curLine = objRegExport.ReadLine() do until instr(lcase(curLine), lcase(strUserName)) or objRegExport.atendofStream curLine = objRegExport.ReadLine loop if objRegExport.AtEndOfStream then wscript.echo "Username not found." wscript.quit() else curLine = ObjRegExport.ReadLine tmpGetUserIndex = mid(curLine, instr(curLine, "(") + 1, len(curline) - instr(curline, "(") - (len(curLine) - instr(curline, ")")+1)) do until len(tmpGetUserIndex) = 8 tmpGetUserIndex = "0" & tmpGetUserIndex loop GetUserIndex = tmpGetUserIndex end if End Function Function CheckArgs() ' This function makes sure that 2 arguments were provided and that the filename provided exists if objArgs.Count <> 2 then CheckArgs = "Exactly 2 arguments must be specified." elseif not objFSO.FileExists(objArgs(1)) then CheckArgs = "File not found." else CheckArgs = "" end if End Function |
The script syntax is: SetUserTile.vbs USERNAME FILE
The file used by this script consists of only the UserTile value from a registry export of a preconfigured UserTile. This can be accomplished by setting a local user account’s picture, opening regedit using the psexec -s -i regedit.exe command, navigating to the SAM key mentioned above, determining the correct user account as detailed above, and exporting the key. Then remove all data in the .reg file except the “UserTile=hex:…” entry.
To leverage this script, a command-script file was created and added to the Software Installation task sequence.
reg import AcceptPSExecEULA.reg cscript SetUserTile.vbs "USERNAME" DATAFILE.txt |
I hope to have a commandline based program developed in the future to tackle this which will accept any sized bitmap image as it’s input as opposed to using a captured registry value. I hope you have enjoyed this post. If you have any questions feel free to ask!
How MDT does Application Installation January 20, 2010
Posted by keithga in MDT 2010, Troubleshooting, VBscript, Windows 7.8 comments
Been working lately on adding some Application Installation packages to MDT, and I’ve seen some good, bad, and ugly packages.
So, what makes an application installation compatible with MDT (or other scripted installation methods, for that matter)?
Good question.
Microsoft Installer (MSI)
The good!
More and more products are being released lately as MSI packages. Most MSI Packages are easy to automate. For example, I typically use the following parameters:
Msiexec.exe /qb- /l*vx %LogPath%\<file>.log REBOOT=ReallySuppress UILevel=67 ALLUSERS=2 /i <File>.msi
MDT will easily handle this installation script, and install properly for most MSI packages. Yea!
Non-MSI Packages
However, it is possible that you are working with a custom installation package, or perhaps developing your own. What are the rules necessary to make the package work in MDT?
Rule 1: Provide unattended installs
The install program should have a way to install in a unattended manner. Typically this is done by some sort of command line switch to the installer program or script: /quiet /silent /q whatever. MDT 2010 is a fully automated installation system, and the automation will break if there are any user prompts blocking installation.
For example, if you have a MSI installer package, you can call MSIExec.exe with the /q[bn][-] parameter.
This also equally important for errors. If the install package generates errors, it should provide a method to log the errors to a file for analysis later, rather than prompting the user for interaction with a blocking Error Message Box.
Rule 2: Do not exit until done
The install programs should not exit until all setup tasks have finished. If the setup program returns, yet there are still installation tasks being performed in the background, MDT has no way to determine this. So MDT may continue with the next installation, or perhaps a reboot thus causing conflicts with the installation running in the background.
For example, say you have two installation packages, A.Exe and B.Msi. A.Exe is just a Self Extracting Executable that expands A.MSI to the %temp% folder, and kicks off msiexec.exe. However, A.Exe calls msiexec.exe and doesn’t wait, instead A.Exe promptly exits. MDT does not know what is running in the background, and instead continues installing the next package in the list B.Msi. However since A.Msi is running in the backgound, and MSIExec only allows one installation at a time, B.Msi will fail.
Instead A.Exe should wait until Msiexec.exe /i A.msi has finished.
Rule 3: No rebooting
Sometimes an install package will need to reboot to complete the installation. Reboots, for example, are required to update any file that is already open and in use. It’s a common misconception that you need to reboot to install a device driver, you don’t (unless the driver is in use).
However problems arise if the setup program, when running in an unattended matter, decides to reboot on it’s own, without letting the calling script (in this case MDT), know before hand. It may be a couple of seconds before all processes have a chance to shutdown. It’s possible that MDT may try to continue installing the next program in the order or other cleanup tasks, when it shouldn’t.
Instead, a program should return Windows.h Error Code: 3010 ( ERROR_SUCCESS_REBOOT_REQUIRED ).
This will let MDT know that a reboot is required, reboot the machine, and *then* continue with the rest of the installation packages.
Other Notes
There are a few other notes that I wish I could mention to the authors of installation packages:
- Be aware that the installation may be performed under one user account, but the program may be used under another account. When calling MSIExec.exe, I usually call it with the ALLUSERS=2 property.
- Please make it easy to determine what the unattended/silent installation procedures are. It’s not always easy to determine what the command line parameters are.
- If you have a Self Extracting Executable that calls msiexec.exe, please provide a way to pass logging and other properties (see above) to msiexec.exe.
- Speaking of Self Extracting Exe files that call *.msi packages. Please just provide the *.msi install package, it’s much easier.
- On your web site, please provide direct access to your install packages, rather than going through some web logic. Several populat sites, for example will attempt to offer you *only* the x86 or x64 binaries depending on which platform you are running on, even though I may need both for packaging.
- Please keep the desktop free from links/icons, or provide a property in MSI to disable shortcuts creation on the desktop (I’m talking to you Adobe Reader). I like keeping my desktop clean.
- Speaking of options, please provide ways on the command line to enable/disable most common features.
Keith
Keith Garner is a Deployment Specialist with Xtreme Consulting GroupGreat Overview on Windows Deployment A-Z… January 18, 2010
Posted by keithga in Announcements, MDT 2010, Windows 7.add a comment
Our friend Jeremy Chapman has written a whitepaper:
Deploying Windows 7 from A to Z.doc
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=dfafb346-97dd-4fca-947e-3d9149834da6
It’s a good introductory reference to MDT, SCCM, and Deployment in general.
Keith
Keith Garner is a Deployment Specialist with Xtreme Consulting GroupUpdates to ZTIWindowsUpdate.wsf December 8, 2009
Posted by keithga in MDT 2010, Troubleshooting, VBscript, Windows 7.3 comments
Hope everyone out there is keeping warm now that December has hit. I’ve been busy during the past few weeks working on a couple of consulting gigs. One Large company, one Medium Sized.
Both of them needed a good jump start getting MDT 2010 up and running in their environments. Like many IT departments out there, they are interested in Windows 7, and MDT 2010 is the de-facto reference design for Windows 7 Deployment.
Medium Sized LiteTouch Deployment
For the Medium Sized Company, we created a MDT 2010 Litetouch system with Windows 7, and packaged up around 50 applications, including the latest versions of: 7-Zip, Adobe Reader, QuickTime, iTunes, Adobe Flash Player, Silverlight, Java Runtime, VLC, Microsoft Office 2007 SP2, Microsoft Office Communicator, Microsoft Live Meeting, Citrix Online Plugin, Rumba, Microsoft App-V Client, and more including several internal tools! We also created a MDT 2010 Litetouch DVD boot media disk for their subsidiary sites, standardizing the desktop images throughout the company.
It then took about a day on-site to configure the server, run the validation tests, and personally go through the documentation and steps with the IT Staff.
Large Litetouch Deployment
For the Large Company, we are moving their existing MDT 2008 Update 1 system to MDT 2010. Remediating any scripts and configuration items as necessary. This is an experienced staff, who just needed an extra set of eyes to help ensure this upgrade goes as quickly and as smoothly as possible. (FYI: They have about 250 Applications defined in MDT 2008)
ZTIWindowsUpdate.wsf
One of the changes we needed to perform today at the Large Company was to fix a couple of bugs in ZTIWindowsUpdate.wsf when calling WSUS servers.
First off, was a fix for the WU_E_PT_EXCEEDED_MAX_SERVER_TRIPS error in WSUS. This is a Large Company, with a well managed WSUS server(lots of updates), and they found out they were hitting the hard 200KB limit during Office Updates. So we needed to code a work around to just call ZTIWindowsUpdate.wsf *again* if the error is returend.
Secondly, since they were *only* using WSUS, we wanted to ensure the the ZTIWindowsUpdate.wsf script did not call Microsoft Update. So I added some code to skip Microsoft Update if the parameter “/SkipMicrosoftUpdate:YES” is on the command line.
We will run some tests tomorrow to ensure it’s performing as expected.
Link
Next
It’s been fun setting up Companies large and small with deployment solutions like MDT 2010! We are available for consulting in 2010, if you would like to get Windows 7 and your MDT 2010 environment up and running quickly, give us a call!
Keith and Tim
Keith Garner is a Deployment Specialist with Xtreme Consulting Group
Missing XML files when using USMT and ConfigMgr SP2 November 25, 2009
Posted by tmintner in System Center Configuration Manager, USMT, Windows 7.Tags: MDT, SCCM, USMT, XML
add a comment
So you just upgraded all of your ConfigMgr 2007 Site Servers to Sp2 and you think you are all ready to deploy Windows 7. You integrate the latest MDT 2010 integration pieces and walk through the wizard to create your task sequence and create your new USMT 4.0 package. You then decide to deploy Windows 7 to one of your existing Windows XP clients and it should migrate all of the user data and install the new OS…right? Well after the installation starts it quickly finishes and doesn’t install Windows 7. After looking through the smsts.log file, you will notice that the task sequence failed on the Capture User State Step with an error message that it cannot find miguser.xml. Closer examination shows that it is looking for the XML file at the root of the package. Looking at the contents of the USMT package, you will notice that the XML files are in the X86 folder or X64 folder. Easy enough to fix, those MDT guys must have pointed the package to the wrong directory. So you modify the package to point to the X86 folder and try it again. Does it work? NO!! This time it fails because it cannot find scanstate.exe. So what in the world is wrong?
Configuration Manager SP2 updates all of the executables that ConfigMgr uses for an OS Deployment. One of the files that is used during a USMT migration is called OSDMigrateUserState.exe. During an OS Deployment this file will be in one of two places. For a New Computer deployment the file will be on Windows PE. If you are doing a Refresh from an existing operating system the file will reside in the client’s local CCM directory. If you just upgraded your site servers to SP2 the client machines won’t have the upgrade OSDMigrateUserState executable. Prior to SP2, that executable had no knowledge of USMT 4 and the directory structure change of USMT. So if you want to use USMT 4 in your ConfigMgr deployments you are going to need to upgrade all of your clients to ConfigMgr Sp2 as well!
This is just one example where mismatched SP1 and SP2 versions on your client machines will cause issues with Windows 7 deployments. As a best practice always make sure you have SP2 fully deployed to all of your site systems AND all of your client computers before starting a Windows 7 deployment.
-Tim Mintner
Understanding USMT with MDT 2010 November 20, 2009
Posted by tmintner in MDT 2010, USMT, Windows 7.Tags: ConfigMgr, hard link, MDT 2010, SCCM, USMT
16 comments
The User State Migration Tool (USMT) is an extremely powerful and essential piece of an Operating System Deployment. With the release of the Windows AIK for Windows 7, USMT 4.0 was made available and includes many great new features such as hard-link migration (for more information on what’s new in USMT 4.0 see this article). MDT 2010 integrates USMT directly into the task sequence for both Lite Touch Installations and Zero Touch Installations. There have been several questions since MDT 2010 was released on how USMT works with MDT and how all of the pieces fit together.
Lite Touch Installation
USMT 4.0
In order to user MDT 2010, you must install the Windows AIK for Windows 7. The Windows AIK now includes USMT 4.0 as a feature of the AIK so there is no longer a separate download required for USMT. When you create your Deployment Share inside of the Deployment Workbench, MDT will create a folder at the root of the deployment share called USMT and copy the USMT files into that folder.
Refresh Scenario
A refresh scenario means that you are deploying an Operating System to a computer that already has an existing Operating System using a task sequence created with the Standard Client Task Sequence. The process is started from within the current Operating System. In a Refresh scenario, the disk is not formatted or partitioned so in most cases, the user data can be saved locally on disk saving time and network bandwidth. During a Lite Touch Installation there are only two steps in the task sequence step that uses USMT. The first step is called Capture User State and the second step is called Restore User State. This step will run a script called ztiuserstate.wsf. The actions that ztiuserstate will be performed are determined by the following factors:
- The Operating System being deployed
- The values provided in CustomSettings.ini for UserDataLocation and UDDIR and UDShare
- The values provided in the Client Deployment Wizard used to start the Task Sequence
If ZTIUserState determines that you are deploying Windows XP it will not be able to use USMT 4.0 and will try to use USMT 3 for the user state migration (more on that later). If you have specified that UserDataLocation = Network and you have also specified a UDDIR and UDShare in the customsettings.ini then USMT will migrate all of the files to a compressed file at the network location you specify. Also if you provide a network location in the Client Deployment Wizard, USMT will migrate the user data to a compressed file at the network location you specify. If UserDataLocation = AUTO and you are not deploying Windows XP, the ztiuserstate script will keep the data local in the MININT folder using hard-link migration. There is no need to do an estimate because the hard-link migration process only requires 250 MB of space on the disk and if you didn’t have that much the process would fail in the validate step.
Replace Scenario
A Replace scenario is made up of two task sequences. The first task sequence is based upon the Standard Client Replace template and the second task sequence is based on the Standard Client task sequence template. The first task sequence is initiated from within the existing Operating System like in a Refresh scenario. The USMT capture process in a Replace scenario works just like a Refresh scenario with one exception, in a Replace scenario the user data can not be stored locally so you must provide a network location to store the User Data.
The second task sequence is started by booting into the Lite Touch boot image and doing a New Computer deployment. The Client Deployment Wizard will ask if you want to restore user state and where the user state is stored. The Restore User State step in the task sequence would then use USMT to restore the user state to the computer being deployed.
USMT 3.01
So if USMT 4 has all these new cool features, why would you ever still want to use USMT 3? Well USMT 4.0 cannot restore user data onto Windows XP. Loadstate.exe from USMT 4.0 will not run on Windows XP. So if you plan on migrating user data to Windows XP you will still need to use USMT 3.01. To use USMT 3.01 you will need to download it from Microsoft. The Deployment Workbench has direct links to both the 32 bit and 64 bit versions of USMT 3.01 in the Components section. After downloading the installation files you will need to place those installations files in the Tools\X86 folder in your Deployment Share for 32 bit installs and Tools\X64 for 64 bit installs.
Refresh Scenario
In a Refresh scenario,the Lite Touch Installation process will be able to determine if the Operating System being deployed is Windows XP. The same factors mentioned above are applicable for USMT 3.01. If the Operating System is Windows XP, the ztiuserstate script will install USMT 3.01 on the computer and then do an estimate to determine how much user data is on the computer. If the amount of user data is less than the amount of disk space needed then ztiuserstate will store the user data on the local disk in the MININT folder. If there is not enough space then the user data will be stored in the UDSHARE and UDDIR locations.
Replace Scenario
A Replace scenario is a little trickier. The Lite Touch Installation process won’t be able to automatically determine what Operating System you are going to be deploying because the Operating System is going to be deployed with a separate task sequence potentially even on a different computer. In a Replace scenario ztiuserstate will use USMT 4.0 by default, however there is one problem with that. User Data backed up with USMT 4 cannot be restored with USMT 3 and USMT 4 cannot be run on Windows XP! So if you are replacing a Windows XP computer with another Windows XP computer, how can you make sure that USMT 3.01 is used? To handle that scenario, MDT has a variable called USMT3. To force the Replace scenario to use USMT 3 you would enter the following into your customsettings.ini:
USMT3 = YES
Zero Touch Installation (ConfigMgr/SCCM)
The USMT process with ZTI is slightly different than the process with Lite Touch. The steps in a ZTI task sequence look like the following for capturing User State:
The MDT integrated task sequence uses the built in actions for Request State Store, Capture User State, Release State Store, and Restore User State. The Ztiuserstate.wsf script is only used in one step: Determine Local or Remote User State.
With ZTI, the version of USMT that is used is solely dependent on the USMT package that is associated with the Determine Local or Remote User State, Capture User State, and Restore User State steps in the task sequence. You will need to create a package that contains the files for either USMT 3.01 or USMT 4.0. Thankfully when you walk through the wizard to create the MDT task sequence in Configuration Manager, the MDT provided wizard will create the USMT 4.0 package for you automatically. If you want to create a USMT 3.01 package you will need to download and install USMT 3.01 on a client computer and use the installation folder in the Program Files folder as the source directory for your package.
USMT 4.0
The version of USMT that you are using for your USMT package will determine what actions the Determine Local or Remote User State will perform. If you are using USMT 4.0 then the Determine Local or Remote User State will set the variable needed to do a hard-link migration and also set a variable called USMTLOCAL =TRUE. The Request State Store and Release State Store steps in the task sequence have a condition on them so that they will only run if USMTLOCAL is not true. That means if you are using USMT 4, the user state will always be local and the State Migration Point will never be used. If you would like to use the State Migration Point instead of using hard-link migration then just disable the Determine Local or Remote UserState step in the task sequence
USMT 3.01
If you are using USMT 3.01 then the Determine Local or Remote User State step will perform a USMT Estimate to determine if there is enough space locally on the disk to store the user data. If there is enough space locally the variable USMTLOCAL is set to TRUE. Again the Request and Release State Store steps are conditional on this variable so if there is not enough room locally the State Migration Point will be used
Summary
Whew..that is a lot of information. As you can see, MDT tries to cover all of the scenarios with USMT whether you are using USMT 4.0 or still deploying Windows XP and need USMT 3.01. Enjoy and happy deploying!
-Tim Mintner
New Tool: MDT 2010 Build-out/Hydration Evaluation November 13, 2009
Posted by keithga in MDT 2010, PowerShell, VBscript, Windows 7.5 comments
I wanted to give a glimpse of some projects we are working here at Xtreme Consulting Services – Deployment Team.
This is a Microsoft Deployment Toolkit 2010 Build-out (sometimes called Hydration) system.
It starts off as a small 3MB *.zip file. The MDTBuildout.exe program will automatically download all required files (around 10GB of files), create a Virtual Machine running Windows Server 2008, and build out a functional MDT 2010 system. All the files downloaded are publicly avaiable over the internet.
This sample is *not* designed for production environments. The Server OS and Windows 7 Client OS’es downloaded are time-limited Evaluation versions of Microsoft OS’es, and not intended for production environments. If you would like to setup a functional system for your corporate environment, please let us know.
Xtreme Consulting Service’s Deployment Team is ready to assist you with your deployment needs.
Features
When complete, this Buildout (Hydration) system will create:
- A Virtual Machine running Windows Server 2008 (R1) x86 Server Standard.
- MDT 2010, with all dependencies installed (including WAIK).
- OS’es: Server 2008 R1 x86, Windows 7 x86 and Windows 7 x64.
- Microsoft Office 2007 Enterprise Evaluataion Version.
- Applications: 7-zip, Foxit PDF Reader, MacroMedia player, Silverlight player, SQL Server 2008 Express, Sun Java Runtime, Video Lan Player, Windows Debugger (windbg).
- Sample Driver package: Intel Chipset drivers.
- Sample Packages: Windows 7 Language Packs, Hyper-V Drivers, Remote Server Administration Tools (RSAT)
- A Windows 7 Media build DVD image with Office 2007.
- It will also enable a PXE/WDS Service for servicing MDT 2010 WinPE Images (no Domain Controller required).
- A blank Virtual Machine ready to perform a capture of Windows 7 back to the MDT 2010 server.
Requirements
- Your machine must be running windows with a version of either Hyper-V (for Windows Server 2008) or Virtual PC 7 (for Windows 7).
- Your machine must have at least 2GB of ram, and 60GB of free hard disk space.
Walkthrough
Download the MDTBuildout.zip file to your local machine and expand the contents to their own folder. You should see the manual: MDTBuildout.rtf and the Wizard Wrapper MDTBuildout.exe. Go ahead and launch the MDTBuildout.exe.
The MDTBuildout.exe wizard will guide you through the process of creating the virtual machine and downloading the necessary files to get it started. The wizard will create to Virtual Machines:
MDTVirtualServer – This is the Virtual Server that will host MDT 2010. It takes a couple of hours to setup, depending on the speed of your network connection.
MDTVirtualClient – This Virtual Machine will be used later on to capture a reference image of Windows 7 with Office 2007.
It is recommended that you use the default settings during the MDTBuildout.exe wizard, although, you can override the settings if required. Be sure to give the Virtual Machines enough memory, place the *.VHD files on a disk with 40+GB of space free, and select the Virtual Networking adapter with internet access.
When you select “Build” the wizard will begin the process of downloading the Windows Server 2008 Eval *.iso file to the local machine, this file is about 1.8GB. When done, the wizard will automatically create the virtual machines with the required parameters, and start the process. You can continue to watch the progress in the VM window.
The entire build process can take several hours depending on the speed of your network connection. Let the install run. When complete, you should see a dialog showing the status.
The password for the MDT Server is: P@ssword
When complete, you can start the MDT 2010 Workbench (start –> Microsoft Deployment Toolkit –> Deployment Workbench), and view the components added to the system.
The deployment share should be at: c:\deploymentshare
The media share should be at: c:\media
If you wish, you can start the PXE server, to allow other computers on the network to boot into MDT 2010, this is a great way to upgrade machines on your corporate network in a “self-service” fashion. To enable the pxe server, run the command “net start wdsserver”. WARNING: The PXE/WDS Server running on the Virtual Machine *will* conflict with other PXE/WDS servers on the network. Please ensure that you are the *only* PXE/WDS server on the network before starting! This is why the WDS service is disabled by default.
You can also burn the contents of the Win7 Media ISO to a DVD drive. Or perhaps copy the *.iso file to the local machine.
Use this server to evaluate MDT 2010 and try deploying Windows 7 (Evaluation Version), to your test lab.
When ready, you can boot the MDTVirtualClient Virtual Machine, using either the Win7 Media ISO image, or PXE/WDS. The Client Virtual Machine has been specially configured to auto install Windows 7 and upload the captured image back to the MDT 2010 Server in a completely hands off fashion.
More documentation, walkthroughs, and videos to follow.
Link
Keith
Keith Garner is a Deployment Specialist with Xtreme Consulting GroupWindows 7 and that pesky System Partition November 5, 2009
Posted by tmintner in MDT 2010, Windows 7.Tags: Disks, MDT, Partitions, Windows 7
add a comment
If you have installed Windows 7 or Server 2008 R2 through either the Windows media or MDT then you have noticed that a 100 – 300 MB system partition is created that is hidden when you finish in the final operating system (well it is not really hidden, it just doesn’t have a drive letter). The Microsoft Windows team made that decision so that bitlocker could easily be enabled at a later time without having to repartition the disks. However if you don’t ever plan on enabling Bitlocker on your Windows 7 or Server 2008 R2 systems you can use MDT with an extra variable in the customsettings.ini and MDT won’t create the extra partition. The variable is:
DoNotCreateExtraPartition = YES