home *** CD-ROM | disk | FTP | other *** search
- echo off
- setwin
- setatt 15 1
- clrwin
- setatt 10 1
- title " Security Code Input Procedure "
- setatt 15 1
-
- echo
- echo
- center "This procedure automates the process of adding security codes to "
- center "your system. You will need a separate security code for each "
- center "software package purchased. "
- echo
- 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 questions about the procedure, please see your "
- center "dealer. "
- echo
- center "To obtain your codes, follow the instructions on the following "
- center "screens. As part of this procedure, you will need to call "
- center "Computervision. You can call any time between 7:30 AM and 7:00 PM"
- center "Eastern Standard Time. "
- 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
-
- echo
- echo
- center "Before calling for your codes have the following at hand: "
- echo
- center "* The serial number of your hardware security device. This is "
- center " located on the bottom of the device. "
- echo
- center "* The software serial number, model number, and software check "
- center " digits for each software package purchased. These numbers are "
- center " located on the diskette labels. "
- echo
- center "* Paper and pencil for recording the security codes. There will "
- center " be six numbers to record for each software installation. "
- echo
- center "When ready, press any key to continue on to the next screen. "
- pause
-
- clrwin
- echo
- echo
- center "To obtain your software security code(s), call one of the "
- center "following numbers: "
- echo
- setatt 10 1
- center "Toll Free in USA outside Mass 1-800-833-8003"
- echo
- center "Toll Free inside Mass 1-800-325-1255"
- echo
- setatt 15 1
- center " - or - "
- setatt 10 1
- echo
- center "1-617-275-1800, Ext. 3641 or 3640"
- setatt 15 1
- echo
- center "Once you have obtained the code(s), press 'Y' to continue on to "
- center "the next screen. "
- echo
- center "If you cannot get the code(s) now, press 'N'. This will cause "
- center "this procedure to aborted. You can then type SECURE and get your"
- center "numbers at a later time. "
- getsel "YyNn"
- clrwin
- if select N exit
- if select n exit
-
- :new_numbers
- echo
- echo
- getvar " Please input the first number: " V1 5
- echo
- getvar " Input the second number: " V2 5
- echo
- getvar " Input the third number: " V3 5
- echo
- getvar " Input the fourth number: " V4 5
- echo
- getvar " Input the fifth number: " V5 5
- echo
- getvar " Input the sixth number: " V6 5
-
- clrwin
- echo
- echo
- center "The numbers input 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"
- clrwin
- if select N goto new_numbers
- if select n goto new_numbers
- clrwin
-
- echo "{V1} {V2} {V3} {V4} {V5} {V6}" >&TMP1
- 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
- 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
-
- echo
- echo
- center "SECURE normal exit."
- :end
-
-