User File #638335688017624459

Upload All User Files

#638335688017624459 - Windows script for quick ISO file creation

drag-drop_iso.bat
System: Windows
32 downloads
Uploaded 10/22/2023 10:53 AM by feos (see all 184)
  • Non-deterministic
  • Should be put in the cdrtools folder
@echo off
cd /d "%~dp0"
if [%1]==[] (
    echo Drag and drop file or folder onto the batch script.
    echo.
) else (
    echo mkisofs -J -o "%1".iso "%1"
    mkisofs -J -o "%1".iso "%1"
)
pause