home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo **************************************************************************
- echo * This CMD file will indicate which level of OS/2 is currently installed.*
- echo * It executes SYSLEVEL and then looks for the Type field. *
- echo * Please be sure that it shows the Version as 2.10. *
- echo * You will need the Type information to determine if you have a mismatch.*
- echo **************************************************************************
-
- REM * Run SYSLEVEL and create an output file
-
- syslevel >ccp
-
- REM * Run FIND filter to determine version and which package is installed
-
- find "Version 2.10" ccp
- find "Type" ccp
-
- echo *************************************************************************
- echo * If Type = 0, then this is the original Shrinkwrap (blue) package. *
- echo * If Type = P, then this is the original Preload (blue) package. *
- echo * For these cases, use the following files: *
- echo * BLU2SAL3.CMD is for 3.5" diskettes. *
- echo * BLU2SAL5.CMD is for 5.25" diskettes. *
- echo * *
- echo * If Type = 0-2, then this is the reduced Shrinkwrap (salmon) package. *
- echo * If Type = P-2, then this is the reduced Preload (salmon) package. *
- echo * For these cases, use the following files: *
- echo * SAL2BLU3.CMD is for 3.5" diskettes. *
- echo * SAL2BLU5.CMD is for 5.25" diskettes. *
- echo * *
- echo *************************************************************************
- del ccp