home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- rem 9-10-87 - Updated for 2.11 version of DRAFT
- rem 3-10-87 - Personal Architect re-install command program
-
- rem -- test for bad install calls
- if %1! == recurs! goto exit_msg
- if %1! == ! goto loadtype
- goto exit_msg
-
- :loadtype
- cls
- echo ╔══════════════════════════════════════════════════════════════════════╗
- echo ║ Personal Architect Version 2.11 ║
- echo ║ Design/Draft Re-Installation Program ║
- echo ║ ║
- echo ║ Copyright (C) 1987 Computervision, Corp. ║
- echo ╚══════════════════════════════════════════════════════════════════════╝
- echo
- echo This re-installation program should only be used when you are
- echo changing graphics boards, protection devices, or input devices.
- echo Re-installation of the complete software should be done by placing
- echo the appropriate Design or Drafting Master Diskette Number 1 in
- echo Drive A and type "a:install". For detailed information refer to
- echo respective Release Notes booklet.
- echo
- echo Personal Architect Re-installation Options:
- echo
- echo 1 = Re-install Advanced Architectural Drafting
- echo 2 = Re-install Architectural Design
- yntest 1 2 29 . Enter your selection:
- if errorlevel 1 goto loaddes
-
- :loaddra
- cd\patools
- if not exist \DRAFT\DRA.EXE goto no_draft
- diskman DRAFT.DAT
- cd\
- goto end
-
- :loaddes
- cd\patools
- if not exist \DESIGN\*.* goto no_design
- diskman DESIGN.DAT
- cd\
- goto end
-
- :no_draft
- cls
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo ╔══════════════════════════════════════════════════════════════════════╗
- echo ║ Installation error. ║
- echo ║ Advanced Architectural Drafting Vers. 2.11 not currently installed. ║
- echo ║ Re-installation must be done from diskette. Please refer to your ║
- echo ║ Release Notes booklet for the proper installation procedures for ║
- echo ║ this program. ║
- echo ╚══════════════════════════════════════════════════════════════════════╝
- goto end
-
- :no_design
- cls
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo ╔══════════════════════════════════════════════════════════════════════╗
- echo ║ Installation error. ║
- echo ║ Architectural Design Vers. 2.1 not currently installed. ║
- echo ║ Re-installation must be done from diskette. Please refer to your ║
- echo ║ Release Notes booklet for the proper installation procedures for ║
- echo ║ this program. ║
- echo ╚══════════════════════════════════════════════════════════════════════╝
- goto end
-
- :exit_msg
- cls
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo ╔══════════════════════════════════════════════════════════════════════╗
- echo ║ Installation error. ║
- echo ║ Please refer to your Release Notes booklet for the proper ║
- echo ║ installation procedures for this program. ║
- echo ╚══════════════════════════════════════════════════════════════════════╝
- goto end
-
- :end
-
-