|
#1
|
|||
|
|||
|
i have 10 folder after compress, how to create iso with software image burn .
|
| Sponsored Links |
|
#4
|
|||
|
|||
|
#5
|
||||
|
||||
|
This code is more easy.
Code:
@echo off Title Folder2iso with "MKISOFS" 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. mkisofs.exe -r -R -J -l -L -V %LBL% -o %NAME%.iso "%CARP%" AND THIS CODE IS FOR IMGBURN Code:
@echo off 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. dir /b /s "%CARP%" > LIST.IBB "imgburn.exe" /mode build /buildmode imagefile /SRCLIST LIST.IBB /dest ".\%NAME%.iso" /FILESYSTEM "UDF" /UDFREVISION "2.01" /VOLUMELABEL "%LBL%" /noimagedetails /start /close Last edited by ChronoCross; 20-04-2016 at 19:45. |
|
#6
|
|||
|
|||
|
Quote:
WWE 2K16_1 - WWE 2K16_14 = size 43 GB why output iso just 1 file = 91GB
|
|
#7
|
||||
|
||||
|
No bro. Select the folder one by one.
The path wwe 2k16_1 label wwe 2k16_1 iso name wwe 2k16_1 and make this with the others folders with his respectives names |
| The Following User Says Thank You to ChronoCross For This Useful Post: | ||
inatha3 (21-04-2016) | ||
|
#8
|
|||
|
|||
|
Quote:
![]() but this can bulk create iso ? so i can going to sleep when crete iso
|
|
#9
|
||||
|
||||
|
(OK i post this and i'm done with this thread and the Attached Files )
OK finally the best settings in cmd for "IMGBURN" for make an iso image. Code:
@echo off 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. "imgburn.exe" /mode build /buildmode imagefile /ROOTFOLDER yes /BUILDINPUTMODE standard /SRC "%carp%" /dest ".\%NAME%.iso" /FILESYSTEM "UDF" /UDFREVISION "2.01" /VOLUMELABEL "%LBL%" /noimagedetails /start /close |
| The Following User Says Thank You to ChronoCross For This Useful Post: | ||
inatha3 (21-04-2016) | ||
|
#10
|
|||
|
|||
|
thanks ChronoCross , perfect
|
|
#11
|
||||
|
||||
|
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- |
| The Following User Says Thank You to gozarck For This Useful Post: | ||
inatha3 (23-04-2016) | ||
|
#12
|
|||
|
|||
|
Quote:
![]() this is what i want . thanks |
|
#13
|
|||
|
|||
|
you can use this parameters to use BurnAware
"BurnAware_tools\MakeISO.exe" isoudf "ISO_sources\*.*" Iso_created.iso -x |
|
#14
|
||||
|
||||
|
This is another version of your idea. Inatha3
__________________
-the science of the useless- |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Nero PMA Update failure | angelosbg | CD/DVD Software & Utilities | 9 | 24-09-2008 03:40 |
| I need create Protection Fix Patches | trastornaki | PSX Games | 2 | 16-01-2007 15:35 |
| How to create a cue file for Destruction Derby 2 PAL | brute44 | PSX Games | 1 | 11-08-2002 14:29 |
| how to create backup to hard drive | fasttoon | PC Games | 2 | 02-06-2002 11:56 |