home *** CD-ROM | disk | FTP | other *** search
- /* SETUP.CMD -- REXX */
-
- parse ARG TargetPath
- if (WordPos( TargetPath, "/H /h /? -H -h -?") > 0) then
- call SelfDocExit
-
- call RxFuncAdd SysLoadFuncs, RexxUtil, SysLoadFuncs
- call SysLoadFuncs
-
- call SysCls
- say "┌─────────────────────────────────────────────────────────────────────┐"
- say "│ Unprotect Pro CD 8.0 Installation │"
- say "├─────────────────────────────────────────────────────────────────────┤"
- say "│ │"
- say "│ This is the install program for Unprotect Pro CD 8.0 (DOS). │"
- say "│ It will install the Unprotect files on your hard disk and │"
- say "│ creates a program folder. │"
- say "│ │"
- say "│ │"
- say "│ Press any key to continue, or Ctrl+C to exit. │"
- say "└─────────────────────────────────────────────────────────────────────┘"
- '@pause > NUL'
-
- if TargetPath = ' ' then do
- call SysCls
- say '┌─────────────────────────────────────────────────────────────────────┐'
- say '│ Unprotect Pro CD 8.0 Installation │'
- say '├─────────────────────────────────────────────────────────────────────┤'
- say '│ │'
- say '│ Please enter the name of the directory you wish to │'
- say '│ install Unprotect to, at the prompt below. │'
- say '│ │'
- say '└─────────────────────────────────────────────────────────────────────┘'
- say ' Directory to install to (Default = C:\UNP80): '
- say '───────────────────────────────────────────────────────────────────────'
- parse pull TargetPath
- /* if they accepted the default */
- if TargetPath = ' ' then TargetPath = 'C:\UNP80'
- end
-
- say " Installing Unprotect Pro CD 8.0..."
-
- '@IF NOT EXIST 'TargetPath'\* @MD 'TargetPath
- call SysFileTree TargetPath, FileTree, 'DT'
- if FileTree.0 <> 1 then do
- say "ERROR: Can't find or create directory "TargetPath || D2C( 7)
- call SelfDocExit
- end
-
- say " Install is copying files, please wait..."
- '@COPY UNP80\BIN\DOS\UNP.EXE 'TargetPath' >NUL'
- '@COPY UNP80\BIN\DOS\DOS4GW.EXE 'TargetPath' >NUL'
- '@COPY UNP80\DATA\UNP80OS2.ICO 'TargetPath' >NUL'
-
- say " Creating the program folder..."
- classname = 'WPFolder'
- objectname = 'Unprotect Pro CD 8.0'
- msgtext = 'Unprotect Pro CD 8.0'
- location = '<WP_DESKTOP>'
- setup = 'OBJECTID=<WP_UNPFolder>;'
- CALL DOCreateObject
-
- say " Creating the objects..."
- classname = 'WPProgram'
- objectname = 'Unprotect Pro CD 8.0 (DOS Version)'
- msgtext = 'Unprotect Pro CD 8.0 (DOS Version)'
- location = '<WP_UNPFolder>'
- setup = 'EXENAME='||TargetPath||'\UNP.EXE;'||,
- 'ICONFILE='||TargetPath||'\UNP80OS2.ICO;'||,
- 'STARTUPDIR='||TargetPath||';'||,
- 'PROGTYPE=WINDOWEDVDM;'||,
- 'OBJECTID=<WP_UNP80_EXE>;'
- CALL DOCreateObject
-
- say ''
- say '┌─────────────────────────────────────────────────────────────────────┐'
- say '│ Unprotect Pro CD 8.0 Installation │'
- say '├─────────────────────────────────────────────────────────────────────┤'
- say '│ │'
- say '│ Unprotect Pro 8.0 has been installed on your system. │'
- say '│ │'
- say '└─────────────────────────────────────────────────────────────────────┘'
- say ''
-
- EXIT rc
-
- /* ------------------------------------------------------------------------- */
-
- SelfDocExit: procedure expose SrcPath BootSetMax
-
- say "SETUP.CMD"
- say "This little REXX command will copy the Unprotect 8.0 main program files"
- say "to a target directory that you need to specify. (see syntax below)"
- say "For best results, please specify an empty directory."
- say ""
- say "NOTE: You need at least 2 MB available on the target drive."
- say ""
- say "USAGE: SETUP target_dir_fullpathname"
- say "EXAMPLE: SETUP C:\UNP80"
-
- EXIT 1
-
- DOCreateObject:
- SAY ''
- CALL charout, ' Creating/updating object: ' msgtext
- rc = SysCreateObject(classname, objectname, location, setup, 'U')
- IF rc <> 0 THEN DO
- CALL charout ,'... OK!'
- objRC = 0
- END
- ELSE DO
- CALL charout ,'... ERROR #'rc
- objRC = 1
- END
-
- SAY '';
- RETURN objRC
-