home *** CD-ROM | disk | FTP | other *** search
- @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, BLU2SAL3 A: C:) *
- echo *********************************************************************
- goto end
-
- :around
- echo *********************************************************************
- echo * Conversion using Salmon 3.5 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 3 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 6 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 Diskette 7 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 Printer Diskette 1 into drive %1 *
- echo * then press enter *
- echo *********************************************************************
- pause
- COPY %1PRDRV.LST %2\OS2\INSTALL
- b_to_s %2
- echo Conversion is complete.
- echo Shutdown and reboot.
-
- pause
-
- :end
-