home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Share Gallery 1
/
share_gal_1.zip
/
share_gal_1
/
DT
/
DT013A.ZIP
/
UPGRADE.BAT
< prev
Wrap
DOS Batch File
|
1990-02-06
|
2KB
|
78 lines
ECHO OFF
CLS
ECHO
ECHO
ECHO
ECHO This procedure upgrades your current NAMES & DATES to the new
ECHO version on a hard disk ONLY. To work correctly the program
ECHO must now reside on the C: drive in the \ND sub-directory.
ECHO
ECHO WARNING: If the NAME & DATES "Program" upgrade diskette is not
ECHO in the A: drive, place it in the A: drive NOW!
ECHO
ECHO WARNING: this will delete your current SETUP information, so you
ECHO may want to do a "Print Screen" of this data BEFORE running
ECHO this procedure.
ECHO
ECHO
ECHO
ECHO If you do NOT want to run the upgrade, hold down the Ctrl key and
ECHO press C, and then reply Y.
ECHO
ECHO
ECHO Otherwise, to proceed with the upgrade:
ECHO
PAUSE
CLS
C:
CD\
CD ND
IF NOT EXIST ND.EXE GOTO ERRMSG
IF NOT EXIST DATES.DAT GOTO ERRMSG
ECHO
ECHO
ECHO
ECHO Copying files to \ND sub-directory...
ECHO ON
ERASE SETUP.DAT
ERASE NAMES.HLP
ERASE *.OVL
COPY A:ND.EXE
COPY A:*.OVL
ECHO OFF
CLS
ECHO
ECHO
ECHO
ECHO Now remove the "Program" diskette from your A: drive, and insert
ECHO NAMES & DATES "Data" diskette.
ECHO
PAUSE
CLS
ECHO
ECHO
ECHO
ECHO Copying remaining files to new \ND sub-directory...
ECHO ON
COPY A:SETUP.DAT
COPY A:NAMES.HLP
COPY A:*.OVL
ECHO OFF
CLS
ECHO
ECHO
ECHO
ECHO The UPGRADE is now complete.
ECHO
ECHO
ECHO Type ND and press Enter to start the NAMES & DATES program.
ECHO
ECHO
GOTO EOJ
:ERRMSG
ECHO ERROR: files not found that are needed for upgrade.
ECHO
ECHO NAMES & DATES must be on hard drive C: in \ND sub-directory...
:EOJ
ECHO ON