Changeset 234
- Timestamp:
- Aug 9, 2005, 7:08:40 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install.cmd
r2 r234 1 1 /**************************************************************************** 2 2 * FM/2 installation program * 3 ****************************************************************************4 3 * * 5 4 * This program creates folders to hold program and data objects, * … … 8 7 * Run this program in the FM/2 directory (where you unpacked the archive). * 9 8 * * 10 ****************************************************************************11 9 * Note that if you place the FM/2 Utilities package into a directory named * 12 10 * UTILS off of the FM/2 directory, this install program will create some * 13 11 * objects for you for some of those programs. * 14 * ***************************************************************************12 * * 15 13 * For unattended installation, call with /UNATTENDED as the first * 16 14 * argument. * 17 * ***************************************************************************15 * * 18 16 * To avoid any WPS associations being set, use the /NOASSOC argument. * 19 ****************************************************************************20 17 * * 21 * INSTALL /? for usage help.*18 * For usage help, run as INSTALL /? * 22 19 * * 20 * $Id$ * 23 21 ****************************************************************************/ 24 22 25 23 /* Identify ourself */ 26 24 27 '@ Echo off'25 '@echo off' 28 26 'cls' 29 27 … … 521 519 end 522 520 'DEL HPFSOPT.TMP 1>NUL 2>NUL' 521 rc = stream('JFSOPT.CMD','c','query exists') 522 if rc = '' then 523 do 524 rc = stream('JFSOPT.TMP','c','query exists') 525 if rc \= '' then 526 do 527 say 'Creating a sample JFSOPT.CMD file for you.' 528 'REN JFSOPT.TMP JFSOPT.CMD 1>NUL 2>NUL' 529 end 530 end 531 'DEL JFSOPT.TMP 1>NUL 2>NUL' 523 532 rc = stream('FATOPT.CMD','c','query exists') 524 533 if rc = '' then … … 1199 1208 say '³then rerun INSTALL. There is no need to "uninstall" to move FM/2. See ³' 1200 1209 say '³READ.ME for more information. ³' 1201 say '³To remove FM/2 completely, run UNINSTAL and follow itsdirections. ³'1210 say '³To remove FM/2 completely, run UNINSTAL and follow the directions. ³' 1202 1211 say 'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ' 1203 1212 say "I'm done now." 1204 1213 say '' 1205
Note:
See TracChangeset
for help on using the changeset viewer.