10
2008
Adding Drivers to a BDD LiteTouch Image
Since Vista’s release Microsoft has provided a variety of tools for deploying their operating systems. One such tool is Business Deployment Desktop which Microsoft describes as “the best-practice set of comprehensive guidance and tools from Microsoft to optimally deploy Windows Vista and the 2007 Office system.” Though BDD certainly makes OS and application deployment to a variety of hardware platforms simpler than ghosting, eventually you’ll run into a problem: some critical hardware may not be natively supported by WinPE, the preinstallation environment used to load the OS onto a new system. This article will explain how to inject LAN drivers into WinPE, allowing you to deploy installations to a larger variety of hardware.
I’m deploying Windows XP and Vista using BDD and Windows Deployment Services. This platform worked well until yesterday when I network booted a Dell Inspiron 8200 and WinPE failed to recognize the LAN adapter, leaving the machine with no path to the network to continue the installation. The solution is simple: inject your LAN drivers into WinPE. The process of injecting drivers into the WinPE image is simple. Follow the instructions below. You will need to have the Microsoft WAIK (Windows Automated Installation Kit) installed to modify the image. This is available through the Components option in BDD (Business Deployment Desktop). WAIK provides the command line tools for working with WIM images, the image format used by Windows and WinPE.
- Open the WinPE Command Prompt by Clicking Start -> All Programs -> Microsoft Windows AIK -> Windows PE Tools Command Prompt.
- Create an empty folder which you will use to mount the WinPE image:
mkdir C:\mount
- Locate your WinPE image. Mine is located ate C:\RemoteInstall\Boot\LiteTouchPE_x86.wim. Mount the image using the following command, substituting your own mount path and WinPE image. Note that each WIM file can contain multiple images; use the imagex /info command to locate the correct number for your boot image.
imagex /mountrw C:\RemoteInstall\Boot\LiteTouchPE_x86.wim 1 C:\mount
- Locate the INF file for your network driver. Mine is located at C:\Dell\Drivers\R49651\INF\W9X90XBC.INF. Use the following command to inject the driver, subsituting your own driver INF and mount path.
peimg /inf=C:\Dell\Drivers\R49651\INF\W9X90XBC.INF /image=C:\mount
- Commit the changes to the image. Again substitute your own mount location formy own.
imagex /unmount /commit C:\mount
Personally I would like to see BDD automatically add your network drivers to the WinPE boot image when you add them to the Out of Box Driver set, but for your you’ll have to perform this step manually. Interestingly enough I was a die-hard fan of Symantec Ghost before I reached this point in my use of Microsoft’s deployment tools. Ghosting is simple and fast, but Ghost images don’t travel well across a plethora of hardware. This is where Microsoft’s tools, based on an automated install work flow rather than images, truly shines. Consider it good practice to add the network drivers for all computing platforms within your organization. If you perform this simple step you’ll find it simple to deploy identical Windows and software installations over a variety of hardware platforms.
Related Posts
2 Comments + Add Comment
Categories
- Acrobat
- Active Directory
- Basic Concepts
- Blogging
- Crash Course: Home PC Maintenance
- Developement
- ExtJS
- Games
- Get Help
- Hardware
- HTML
- Internet
- JavaScript
- jQuery
- LAN Administration
- Linux
- Microsoft Security Essentials
- Networking
- NOAH
- Opinion
- OS Deployment
- PHP
- Portfolio
- PostgreSQL
- Product Reviews
- RoundCube WebMail
- Scripting
- Security
- Site News
- Software
- Software Updates
- Videos
- Web Browsing
- Windows
- WordPress
- WordPress
- WordPress Plugins

An article by





.jpg)
I’m a Deskside Support guy at a local business, and sometime back I purchase a copy of Ghost 9.0 (ended up costing me $10 after rebate!) and have created a customized Windows XP image using it to save work installing legacy apps I’m hanging onto that I can’t upgrade. I was talking to someone here who said I could do the same thing with MDT and WAIK for free. Sounds good, except everything I’m seeing on the Internet assumes SCCM on a server, which I don’t have and don’t plan to buy. I know Imagex and WinPE is part of either MDT or WIAK, but is it possible to do what I’ve been doing with Ghost using one of these tools w/o a server and SCCM? If it’s that much involved I’d rather stick with Ghost, but I am curious to know.
Ron,
You can do this one of two ways. Both begin with you creating a base image the same way that you would prior to running Ghost (ex: install OS/install apps/os updates/app updates/defrag/sysprep/shutdown).
If you have a server from which you can run Windows Deployment Services (comes with Server 2003 and 2008) you can network boot to WDS and create the image from there very easily.
If you don’t have WDS available to you, you can install MDT 2008 (which will allow you to download WAIK) and use those utilities to create a Windows PE boot CD-ROM, which you can then boot to and use the command line utilities such as IMAGEX to create and deploy your images.
I will warn you that image creation with Microsoft’s technology is slower because images are file-based instead being a straight-up dump of the hard drive. Image deployment is still relatively speedy though.