Subj : Re: Zoomfloppy/Win32: batch file to automatically make a disk
To : All
From : Harry Potter
Date : Sat Jun 22 2019 06:51 am
Here's the batch file:
----------------------------
@echo off
echo Type in the disk name, without quotes, or nothing to not format.
set /p dname=:
if "%dname%"=="" goto a2
set /p did=Now, type in the ID:
c:\opencbm\bin\cbmformat 8 "%dname%",%did%
:a2
c:\opencbm\bin\d64copy --warp "%~1" 8
pause
----------------------------
Enjoy, and tell me what you think!