How to create an ISO with command lines

SunLion

New Member
Messages
17
Reaction score
1
I would like to create an ISO from a folder using command lines.

Is it possible to do this?

Edit

I found out how to do it.

Forget it.
 
Last edited:
Hello SunLion,

very interesting!

Can you please be so kind and post us the link?
:)
I found this way to create the ISO image using commands:

ECHO.
ECHO.
ECHO ===========================================================
ECHO Creating ISO image
ECHO ===========================================================
ECHO.
"%~dp0DATA\tools\%HostArchitecture%\oscdimg.exe" -bootdata:2#p0,e,b"%~dp0DVD\boot\etfsboot.com"#pEF,e,b"%~dp0DVD\efi\microsoft\boot\Efisys.bin" -h -m -u2 -udfver102 "%~dp0DVD" "%~dp0W11_%Version%_%Edition%_%ImageArchitecture%_%ImageLanguage%.iso" -lWin10


The variables are obtained via another script I use to modify the image. Only after everything is ready can I create the ISO image using the command above.

This script uses the oscdimg.exe tool to create the image.
 
With this command "ntlite.exe /?" You'll have the commands to mount an image and so on, and to create an ISO.
 
Back
Top