with your permission CronoCoss i add some lines to the code.
inatha3 says
"but this can bulk create iso ? so i can going to sleep when crete iso" (yes with this code )
hello inatha3, with this batch code you can create iso image for every directory inside the path.
i see your image and your folder called output have many folders.
this batch create an iso file for each folder into your output folder.
Code:
@echo off
setlocal EnableDelayedExpansion
Title "IMGBURN ISO"
ECHO.&ECHO.
SET /P CARP=PASTE THE FOLDER TO CONVERT TO ISO:
ECHO.&ECHO.
SET /P NAME=SET THE NAME OF ISO FILE:
ECHO.&ECHO.
SET/P LBL=SET THE NAME OF LABEL(NO MORE THAN 16 CHARS):
ECHO.&ECHO.
set n=0
for /D %%T in ("%carp%\*") do (
"imgburn.exe" /mode build /buildmode imagefile /ROOTFOLDER yes /BUILDINPUTMODE standard /SRC %%~dpnT /dest ".\%NAME%_!n!.iso" /FILESYSTEM "UDF" /UDFREVISION "2.01" /VOLUMELABEL "%LBL%_!n!" /noimagedetails /start /close
set /A n+=1
)