Live WIM image capture

imagexwimwindows-pe

Is there a tool that can capture a live Server WIM image? Without having to boot the server into WinPE and use imageX. A free or commercial tool would be OK.

Thanks!

Best Answer

Sure, free solution: you can use volume shadow copy and ImageX to do this on your own.

vssadmin create shadow /for=C:
vssadmin list shadows

Then grab the shadow copy's volume ID. (Usually looks like \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopyXX.)

imagex /capture \\?\GLOBALROOT\Device\HarddiskVolumeShadowCopy10\\ image.wim "Server Image"

Then get rid of the shadow copy.

vssadmin delete shadows /for=C:

Might want to use an exact shadow ID to delete (see the /shadow=XXX switch.)

For a solid enterprise-style solution, see SmartDeploy.