Create "raw disk file" from WIM file
Posted
by
Joe Baltimore
on Server Fault
See other posts from Server Fault
or by Joe Baltimore
Published on 2010-12-20T20:37:13Z
Indexed on
2012/09/25
9:39 UTC
Read the original article
Hit count: 323
First timer here. I've searched around here, but haven't found a question like the one I have. Apologies if I missed it.
The challenge at hand: produce a "raw disk image file" from a given WIM file. What I am pursuing so far is to use imagex.exe with the "/apply" operation to take the WIM and lay it down in a directory on a server. That seems to produce all the necessary "stuff" I need in that directory.
How would I take that content and produce a "raw disk image file"? I'm told the definition of "raw disk image file" is a block-by-block copy of the disk image, which I hope is the output of the "imagex.exe /apply" command I use currently, but stored in a single file I can hand back to another system in our solution.
imagex.exe /apply image.wim 1 R:\WimImagePoint
I would like to take the contents of R:\WimImagePoint and produce the elusive (to me) "raw disk image file". ISO is not what they want, nor is anything requiring winPE.
Any pointers? External utilities' references are welcome. Would like to avoid unmanaged code solutions as much as possible, but will entertain them if that's the only route.
Also, I am not married to the idea of imagex /apply as the starting point, it's just the comfort zone so far.
© Server Fault or respective owner