Home » Questions » Computers [ Ask a new question ]

Create a Windows Image for Deployment

Create a Windows Image for Deployment

In my company we have 8 laptops that we use to deploy on the field. These machines get assigned to a user for a certain time and run Windows Vista. All the machines are the same model.

Asked by: Guest | Views: 196
Total answers/comments: 3
Guest [Entry]

Take a look at Windows Deployment Services. It allows you to install one image over the network onto multiple computers that are PXE boot capable (most today are), this is one of the fastest approaches. You will need a Windows CD.
Guest [Entry]

"My favourite way is a mix of techniques.

If you are trying to deploy 1000 desktops, the John T's solution is brilliant, however I think it can get quite annoying, quite quickly.

I build 15-25 computers a day on average, at different times and my favourite (and I think the fastest) method of deploying Windows Vista is simply to copy the root of the DVD drive to a USB Flash Drive - a 4GB one costs around £7.

I then download the WAIK (Windows Automated Installation Kit) (as Christopher_G_Lewis recommends) and generate the unattended XML file.

I have about 10 other Flash Drives (mainly ones I got for free, or just low capacity old ones) and have a mixture of XML files on each depending on what is needed - I label them with a sticky note.

Next, I just put in both the Windows USB stick, and the correct configuration USB Stick, and Windows will be installed in around 15 minutes.

I love this method and would recommend it to anyone!

FYI, I leave the KEY section blank or use one of the ""default"" product keys - not sure if they are public knowledge so I will not give them out, the last stage of the unattended is a generalisation / lock so the end user gets the OOBE (out of box experience)

The WAIK is generally meant for big companies deploying to their own servers. If you create an OEM partner account with Microsoft, you can download the OEM deployment tools, they are basically the same but the help files are much more targeted towards OEM deployment and customisation."
Guest [Entry]

"The proper way of building images these days involves using the Microsoft Deployment Toolkit or MDT for short. The latest version MDT 2013 came out last fall and is simply second to none. MDT builds, captures and deploys images for you. If you've built your images in a VM, MDT can also install the drivers for you in a Make \ Model Hirearchy that will allow you to build one 32-bit and one 64-bit image and simply install drivers, applications, and windows updates dynamically at deploy time. Windows Deployment Services will allow you to PXE boot and multicast the images, but WDS in and of itself it is not a true deployment solution.

Clonezilla is a joke, avoid it like the plague. It lacks offline servicing, driver injection, dynamic software provisioning, and a list of other features.

MDT is configured and controlled through a MMC snap-in called the Deployment Workbench. It’s here you will modify a series of files and folders called Deployment Shares to automate Windows and Office deployments. Ideally if you’re an IT Pro, you should have three shares, one just for building images, one for live production, and a third for testing. If you’re just getting started, just play with a basic share until you’re ready to start building any of those. You want to get comfortable pushing just the generic, stock, vanilla image from the CD and a few apps at deploy time before you even think about going into production. Learn to walk before you run.
Prelim: Install MDT 2013 & ADK

Install MDT 2012, and then install the Win ADK. ADK will install Win7 both and Win8 with no problems

Download & Install MDT 2013 Update 1

http://www.microsoft.com/en-us/download/details.aspx?id=25175

Download Win7SP1 ISOs

Windows 7 Professional SP1-U English x86: http://msft.digitalrivercontent.net/win/X17-59183.iso
Windows 7 Professional SP1-U English x64: http://msft.digitalrivercontent.net/win/X17-59186.iso

SP1 Update roll-ups

http://catalog.update.microsoft.com/v7/site/Search.aspx?q=2775511

STEP 1: Create a Share

The first time you get into MDT, it’s a bit underwhelming, just create a new share, and start feeding it.

Name the share

Choose a generic name

Locate the share

Make sure it’s gonna have room

Configure answer file

The five check boxes will build your first customsettings.ini file.

STEP 2: Feed The Beast

Add Applications

Start first with easy stuff, Firefox, Flash, Office. Worry about those apps that 10% of your users use later.

Add Drivers

Worry about other makes and models later. When getting started, focus on one model, we’ll add other drivers later.

Import OS

Import the install.wim file for now

STEP 3: Build The Task Sequence

Use a standard client task sequence, and configure your answer file

STEP 4: Configure your Share

Bootstrap.ini

Configure this file with the IP of the server if you’re in a network without local DNS. You can also do set an autologin for winpe here.

CustomSettings.ini

This is the real magic file here, many steps of the wizard are either configured or skipped outright here.

Turn on/off what platforms you’ll support here, set your scratch space and enable monitoring here.

STEP 5: Update Share

Update the share and build the boot media. Once you have a boot media, you're in business, boot to the USB or CD, and you're imaging like a real IT Pro!

Something here is key – Always, Always, Always, build your reference images in a Virtual Machine. It doesn’t matter if you use VMware, Hyper-V, or even Oracle’s Free VirualBox. Building reference images in a virtual enviroment allows it to be truly hardware independent. The days of building a separate image for every single make and/or model you support will be long gone once you stop building reference images on physical hardware. Worst case scenario is you’ll be supporting an x86 image and a x64 image, but even that’s unlikely, as x86 is effectively headed the way of DOS.

Build a good hybrid image. This could include Office, OS updates, and some other core/universal business apps. I advise to go this route. Keep firefox, adobe and flash out of your image, these update almost monthly, if not weekly and are very easy to install at deploy time. Just get the command line syntax needed to install apps silently at deploy time. The more you keep out of your image, the easier it is to maintain."