View Single Post
  #11  
Old 22-04-2016, 15:26
gozarck's Avatar
gozarck gozarck is offline
Registered User
 
Join Date: Nov 2013
Location: Argentina
Posts: 163
Thanks: 254
Thanked 495 Times in 114 Posts
gozarck is on a distinguished road
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
)
__________________
-the science of the useless-
Reply With Quote
The Following User Says Thank You to gozarck For This Useful Post:
inatha3 (23-04-2016)