I want to create an ISO image, so a .iso file, on Windows. This is possible to do using COM component IMAPI2FS.MsftFileSystemImage, and I found instructions on how to do this using PowerShell in an MSDN blog post entitled "Writing optical discs using IMAPI 2 in powershell".

After step 3, those instructions say that "at this step you can stop and save resulted image to the local hard disc, this will be a pure iso image."

My question: How do I take $resultStream, i.e., a COM object that results from retrieving an ImageStream, in PowerShell and save its contents to a file?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You need to use FileStream writer. Check this link for an example of how it is done in c#. http://tools.start-automating.com/Install-ExportISOCommand/?-Download

The function there can be used to create cmdlets that help you create ISO. For example,

Run Install-ExportISOCommand This creates Export-Iso

Then, use Export-ISO to create an ISO.

Export-Iso -ISOPath C:\dropbox\test.iso -FileName C:\Dropbox\Scripts
link|improve this answer
So this means that I need to (1) pass the IStream to .NET code, where the data type presumably is System.Runtime.InteropServices.ComTypes.IStream; (2) read that stream one block at a time; and (3) write those blocks to file using FileStream.Write(). Is that correct? – Marnix Klooster Nov 30 '11 at 12:18
Yes, that is what I understand and tried. It works! – ravikanth Dec 1 '11 at 4:22
Will try (perhaps in a couple of days), will report back here. – Marnix Klooster Dec 1 '11 at 4:41
I've accepted this as the answer. Actually I want to do this without adding a cmdlet, and somehow in PowerShell cannot get the ImageStream property result cast to a System.Runtime.InteropServices.ComTypes.IStream: that cast always fails. So I'll be stealing some more code from Export-ISO to see whether that works better. – Marnix Klooster Jan 27 at 6:06
feedback

You can also use the DiscUtils library to make ISOs (and do other things): http://discutils.codeplex.com/

PowerShell module: http://discutils.codeplex.com/releases/view/44240#DownloadId=119319

Create a CDBuilder object and go to town with adding files and directories then save it to disk with the Build method.

link|improve this answer
Thanks for this. In my case I'd like to avoid an additional dependency, but this looks like a library which is very easy to use. – Marnix Klooster Jan 19 at 15:17
feedback

Your Answer

 
or
required, but never shown

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