home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Monster Media 1993 #2
/
Image.iso
/
os2
/
os2ccp.zip
/
BLU2SAL5.CMD
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-07-30
|
3KB
|
74 lines
@echo off
cls
if "%1" == "" goto start
if "%2" == "" goto start
goto around
:start
echo *********************************************************************
echo * Please start this CMD file again passing the source diskette drive*
echo * as the first parameter and the target OS/2 partition as the *
echo * second. (For example, BLU2SAL5 A: C:) *
echo *********************************************************************
goto end
:around
echo *********************************************************************
echo * Conversion using Salmon 5.25 diskettes *
echo *********************************************************************
ATTRIB %2\OS2\UNPAC*.* -r
ATTRIB %2\OS2\INSTALL\BLISTLAY.OUT -r
echo *********************************************************************
echo * Insert IBM Operating System/2 Installation Diskette into drive %1 *
echo * then press enter *
echo *********************************************************************
pause
COPY %1BLISTLAY.OUT %2\OS2\INSTALL
echo *********************************************************************
echo * Insert IBM Operating System/2 Diskette 2 into drive %1 *
echo * then press enter *
echo *********************************************************************
pause
COPY %1UNPACK*.* %2\OS2
echo *********************************************************************
echo * Insert IBM Operating System/2 Diskette 4 into drive %1 *
echo * then press enter *
echo *********************************************************************
pause
UNPACK %1BUNDLE %2\OS2\INSTALL\ /N:INSTALL.EXE
echo *********************************************************************
echo * Insert IBM Operating System/2 Diskette 15 into drive %1 *
echo * then press enter *
echo *********************************************************************
echo then press enter
pause
UNPACK %1WINBASE %2\OS2\ /N:PMCONTRL.INF
echo *********************************************************************
echo * Insert IBM Operating System/2 Diskette 16 into drive %1 *
echo * then press enter *
echo *********************************************************************
pause
UNPACK %1WINENV %2\OS2\MDOS\WINOS2\SYSTEM\ /N:CONTROL.INF
UNPACK %1WINENV %2\OS2\MDOS\WINOS2\SYSTEM\ /N:LZEXPAND.DLL
echo *********************************************************************
echo * Insert IBM Operating System/2 Printer Diskette 1 into drive %1 *
echo * then press enter *
echo *********************************************************************
pause
COPY %1PRDRV.LST %2\OS2\INSTALL
atb_to_s %2
echo Conversion is complete.
echo Shutdown and reboot.
pause
:end