Page 1 of 1

How "wimcapture --pipable" option works

Posted: Wed Jul 12, 2017 12:13 pm
by msarfraz
I would like to understand how "wimcapture --pipable" option works. Please help me in understanding better. Also let me know which is source code that I can refer for understanding --pipable option.

Is --Pipable option performing sector based capture like dd utility or file based capture?

Re: How "wimcapture --pipable" option works

Posted: Thu Jul 13, 2017 1:01 am
by synchronicity
A WIM created with the --pipable option is like a normal WIM, except some of the data is rearranged to make it possible to extract sequentially. It's still "file-based".

Re: How "wimcapture --pipable" option works

Posted: Thu Jul 13, 2017 1:24 am
by synchronicity
Also, if you're looking for more detail see write_pipable_wim() in src/write.c. There's a comment that explains the format changes that were made.