home *** CD-ROM | disk | FTP | other *** search
- echo off
- clrwin
-
- -- 12/15/87 SJO microCADDS and microDRAFT version 3
-
- ------ Display title and create window ------
- setwin
- setatt 15 1
- clrwin
- setatt 10 1
- title " Security Code Installation "
- setatt 15 1
-
- ------ Display first screen ------
- echo
- echo
- center " Before you can use your software for the first time you must set up "
- center " the security access codes that are unique to your system. This "
- center " program installs the actual code numbers in a file that resides in "
- center " the root directory of the drive that is running your application. "
- center " You will need a separate security code for each software package "
- center " you have purchased. "
- echo
- center " If your dealer has not already set up your security access codes, "
- center " you will need to first obtain the codes from Computervision. The "
- center " process you need to go through to do this is very simple and is "
- center " described on the following screens. "
- center " NOTE that this procedure assumes that you have already connected "
- center " the hardware security device to your system. If you have not done "
- center " so, and have any questions about how to do it, please refer to the "
- center " installation documentation that came with your program, or contact "
- center " your dealer. "
- echo
- setatt 10 1
- center "Do you wish to continue [Y/N]?"
- setatt 15 1
- getsel "YyNn"
- clrwin
- if select N exit
- if select n exit
-
- ------ Display second screen ------
- echo
- echo
- echo
- center " Before calling Computervision for your security access codes, you "
- center " must have the following information available: "
- echo
- center " 1) The serial number of your hardware security device. This "
- center " is located on the bottom of the device. "
- echo
- center " 2) The software serial number, model number, and software check "
- center " digits for each software package purchased. These numbers "
- center " are located on the diskette labels. "
- echo
- center " 3) Pen and paper for recording the security codes. There will "
- center " be six numbers to record for each software package. "
- echo
- center " When you are ready with all of this, press any key to continue on "
- center " to the next step. "
- pause
-
- ------ Display third screen ------
- clrwin
- echo
- center " Once you have the necessary serial numbers, to obtain the actual "
- center " unique software security code for your machine call the "
- center " Computervision Customer Response Center at one of the numbers "
- center " listed in your release bulletin. "
- echo
- center " If you have already obtained your code numbers, enter a 'Y' "
- center " and continue on to the next screen. "
- echo
- center " Otherwise, telephone to get the codes right now if possible, or "
- center " if you are not ready to obtain or enter the codes, enter an 'N' to "
- center " exit this program. When you are ready you can type SECURE and "
- center " complete the installation of your code numbers at your leisure. "
- echo
- center " Do you wish to continue [Y/N]? "
- getsel "YyNn"
- clrwin
- if select N exit
- if select n exit
-
- ------ Display fourth screen, get numbers ------
- :new_numbers
- echo
- echo
- echo
- getvar " Please enter the first number: " V1 5
- echo
- getvar " Please enter the second number: " V2 5
- echo
- getvar " Please enter the third number: " V3 5
- echo
- getvar " Please enter the fourth number: " V4 5
- echo
- getvar " Please enter the fifth number: " V5 5
- echo
- getvar " Please enter the sixth number: " V6 5
-
- ------ Display fifth screen, echo numbers ------
- clrwin
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- center "The numbers entered were:"
- echo
- setatt 10 1
- center "{V1} {V2} {V3} {V4} {V5} {V6}"
- setatt 15 1
- echo
- center "Are these numbers correct [Y/N]?"
- getsel "YyNn"
- if select N goto new_numbers
- if select n goto new_numbers
- clrwin
-
- echo "{V1} {V2} {V3} {V4} {V5} {V6}" >&TMP1
- SUBR EDOPTION &TMP1 &TMP2
- if not infile &TMP2 Error goto success
- echo
- echo
- center "Error in installing option!"
- center "Please check numbers and try again."
- goto new_numbers
-
- :success
- del &TMP*.*
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- echo
- center "Option installed!"
- echo
- center "Do you wish to install more codes [Y/N]?"
- getsel "YyNn"
- clrwin
- if select Y goto new_numbers
- if select y goto new_numbers
-
- if exist dmantmp del dmantmp
- echo
- echo
- center "SECURE normal exit."
- :end
-
-