View Single Post
  #12  
Old 23-04-2016, 00:20
inatha3 inatha3 is offline
Registered User
 
Join Date: Feb 2015
Location: indonesia
Posts: 21
Thanks: 17
Thanked 2 Times in 2 Posts
inatha3 is on a distinguished road
Quote:
Originally Posted by gozarck View Post
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
)
amazing bro , you are awesome
this is what i want .
thanks
Reply With Quote