Windows – OS deployment: WIM image vs Windows Backup and Restore

deploymentwindows

As someone not very experienced with Windows imaging and with a looming task of deploying OS to at least 2 batches of laptops/PCs, I wonder if an experienced system admin can advise me on which one is better:

1) Windows backup and Restore: this is a method used in another team. To me it seems easy to use, however I'd think the image captured will include the device drivers, and you need to remove SID before you can use the image.

2) WIM with the help of AIK(or WAIK), ImageX, to be more specific. From what I read, this can be done on a virtual machine hence the base image is hardware independent. Drivers can then be injected into the base image, hence you can have a base image, then fork out a few different images.

many thx for any input!

Best Answer

Disk Cloning (backup/restore) can work if you have identical hardware, and aren't too concerned about using a lot of MS central management tools (SCCM, WSUS, etc.). If you are simply deploying workgroup machines, that may be the easiest way to go.

If you're working in a domain environment, you may want to consider using an imaging tool (even for a disk clone) - sysprep, shutdown, then capture the image. I'd suggest something like Clonezilla or Ghost. That said, if you don't have identical hardware, this can be more trouble than it's worth, which is where something like Windows Deployment Services and WIM capture comes in.

With WDS in 2008R2 and above, you can simply sysprep, boot to WinPE, capture an image, then load all your drivers in the WDS driver store, and as part of the deploy process, all of the appropriate drivers will be sucked down to the image. That said, it requires a lot more work to set up and configure than bare image capture, but as you mentioned, you can keep your reference image on a VM, snapshot it, and work more quickly as a general rule.

Really, it's all a matter of scale. For me, personally, anything over 5-10 machines I would go the WDS route, anything smaller, I would use a tool like clonezilla.

Related Topic