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!

link|improve this question

50% accept rate
feedback

3 Answers

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.

link|improve this answer
feedback

This question is fairly open ended, but you need backup software that supports Shadow Copy operations. Targeting the .WIM format as your ultimate goal may be narrowing your options tremendously.

I have not used it for these purposes but I believe Acronis makes some products that can perform this (TrueImage). Your final image output is not likely to be in WIM format, however

link|improve this answer
feedback

Ghost has this functionality but for GHO not WIM images - http://altirisbe.blogspot.com/2008/12/how-to-use-ghost-imaging-to-create.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.