Changeset 234


Ignore:
Timestamp:
Aug 9, 2005, 7:08:40 AM (20 years ago)
Author:
root
Message:

Add jfsopt support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install.cmd

    r2 r234  
    11/****************************************************************************
    22 *                        FM/2 installation program                         *
    3  ****************************************************************************
    43 *                                                                          *
    54 * This program creates folders to hold program and data objects,           *
     
    87 * Run this program in the FM/2 directory (where you unpacked the archive). *
    98 *                                                                          *
    10  ****************************************************************************
    119 * Note that if you place the FM/2 Utilities package into a directory named *
    1210 * UTILS off of the FM/2 directory, this install program will create some   *
    1311 * objects for you for some of those programs.                              *
    14  ****************************************************************************
     12 *                                                                          *
    1513 * For unattended installation, call with /UNATTENDED as the first          *
    1614 * argument.                                                                *
    17  ****************************************************************************
     15 *                                                                          *
    1816 * To avoid any WPS associations being set, use the /NOASSOC argument.      *
    19  ****************************************************************************
    2017 *                                                                          *
    21  *                        INSTALL /? for usage help.                        *
     18 * For usage help, run as INSTALL /?                                        *
    2219 *                                                                          *
     20 * $Id$                    *
    2321 ****************************************************************************/
    2422
    2523/* Identify ourself */
    2624
    27 '@Echo off'
     25'@echo off'
    2826'cls'
    2927
     
    521519end
    522520'DEL HPFSOPT.TMP 1>NUL 2>NUL'
     521rc = stream('JFSOPT.CMD','c','query exists')
     522if rc = '' then
     523do
     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
     530end
     531'DEL JFSOPT.TMP 1>NUL 2>NUL'
    523532rc = stream('FATOPT.CMD','c','query exists')
    524533if rc = '' then
     
    11991208say '³then rerun INSTALL.  There is no need to "uninstall" to move FM/2.  See   ³'
    12001209say '³READ.ME for more information.                                             ³'
    1201 say '³To remove FM/2 completely, run UNINSTAL and follow its directions.        ³'
     1210say '³To remove FM/2 completely, run UNINSTAL and follow the directions.        ³'
    12021211say 'ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ'
    12031212say "I'm done now."
    12041213say ''
    1205 
Note: See TracChangeset for help on using the changeset viewer.