I'm not sure if it's okay to post this here, but I'm trying to build a console-based application in C# for disc image mastering using the IMAPI2 API, similar to Oscdimg. I’ve been reading Microsoft’s documentation, but most of it is geared toward using it with VBScript. I want to add options for mastering physical devices like DVD, BD, and CD, as well as features for creating bootable drives. Has anyone worked with this before or knows where I could start?
well you can start from here -> https://learn.microsoft.com/en-us/windows/win32/api/imapi2/ tech` it's mostly interface, so, you just have to use interface
@sergiomontejo Eric Haddan did some demo projects on C# in this regard: https://www.codeproject.com/articles/Burning-CD-DVD-Media-with-the-Image-Mastering-API- https://www.codeproject.com/articles/Burning-and-Erasing-CD-DVD-Blu-ray-Media-with-C-an https://www.codeproject.com/articles/Creating-Audio-CDs-using-IMAPI Based on his works, Andrew Walsh made a preliminary .NET Wrapper suitable for a CLI frontend: https://www.awalsh128.com/imapi-version-2-managed-wrapper/