home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April (Special)
/
Chip-Special_1997-04_cd.bin
/
oki
/
600ewn31
/
600ewn32.exe
/
MAKDISK2.BAT
< prev
Wrap
DOS Batch File
|
1996-05-24
|
443b
|
17 lines
@echo off
cls
if %1x == x goto help
echo This will create your OL600e Windows 3.1x software disk 2 on %1.
echo Press Ctrl Break to abort or any other key to continue
pause >nul
600ew32 %1
goto END
:help
echo ---------------------------------------
echo Usage: MAKDISK2 [destination:]
echo ---------------------------------------
echo Example: MAKDISK2 A: -- Will create your OL600e Window 3.1x disk 2.
echo
pause >nul
:END