2

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!

Mike
  • 295
  • 3
  • 9

2 Answers2

9

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.

seisyll
  • 91
  • 1
  • 4
0

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

user63655
  • 11
  • 2
  • This is a protected blogpost ... [It would be preferable](http://meta.stackexchange.com/q/8259) to include the essential parts of the answer here, and provide the link for reference. – j0k Dec 13 '12 at 10:43