home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / vol1 / ncgip151.zip / MANUALS.TXT < prev    next >
Text File  |  1997-02-16  |  4KB  |  119 lines

  1.  
  2.  
  3.  
  4.  
  5.                 Manuals for program package 'InPack v1.51'
  6.  
  7.  
  8.  
  9.  1. Introducing
  10.  
  11.  2. Making installation flopy disks
  12.  
  13.   2.1 Application parameters
  14.    2.1.1. Checking floppy disk
  15.    2.1.2. Serial number
  16.    2.1.3. Installation title
  17.    2.1.4. Target directory
  18.    2.1.5. Overwrite existing files
  19.    2.1.6. Ini file name
  20.    2.1.7. Execute on the end
  21.  
  22.   2.2. Protection parameters
  23.    2.2.1. Protect installed application
  24.    2.2.2. File name to protect
  25.    2.2.3. Write name instead of
  26.    2.2.4. Write address instead of
  27.    2.2.5. Encode key
  28.   
  29.   2.3. Change source directory
  30.   
  31.   2.4. Welcome note
  32.   
  33.   2.5. Make install files
  34.    2.5.1. Recurse directories
  35.    2.5.2. Archive name
  36.    2.5.3. Archive directory
  37.    2.5.4. No. copies
  38.    2.5.5. Floppy disk size
  39.  
  40.  3. Application installation
  41.  
  42.  4. Application uninstallation
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  1.Introducing
  51.       Welcome to the one of the best setup toolkit! InPack v1.51 has been 
  52.     designed to make creating a professional installation fast and easy. 
  53.     Therefore, it will be easy for your user to install your's applications.
  54.     All that and you don't write a single line of code.
  55.       In today world of computers, there are many illegall copies of all
  56.     kind of computer programs. How to protect authors of all programs by
  57.     not allowing no one else to make installation disks but authors of
  58.     these programs, is one of the main task in this program package. If we
  59.     presume that are most of users can't change executable files, applications
  60.     installed with program package 'InPack v1.51' will be very safe from
  61.     coping them, or from install then for more then one user.
  62.       This is the main diference of this program package comparing to other
  63.     similar programs. When your user launches installation program, he or she
  64.     will be asked to write serial number (which is create by you), name and 
  65.     address. After confirming entered data, in next installation process
  66.     he or she won't be able to change this data. Next step in program 
  67.     protection is writing this data directly to executable program due
  68.     installation process (this data you can use in reports, forms etc.).
  69.     Data are encrypted by here given formula, before writing to file.
  70.     If user return installation disk(s) (damaged or something) you will be
  71.     able to see his or she data, and return him new installation disk(s)
  72.     now with entered his data.
  73.  
  74.  2. Making installation flopy disks
  75.       After launching MIFiles.exe (Make Installation Files) program, on screen
  76.     will apear menu with sixth options. With keys up and down you can move
  77.     troughth menu. By pressing key Enter you can choose selected option.
  78.     To make proper installation disk(s) you have to pass option 1 to 5.
  79.  
  80.    2.2.5. Encode key
  81.       Encode key will be used to encrypt your user information. Encrypted
  82.     information will be written in file you chose in section 2.2.2. Here
  83.     is program who encrypt and decrypt string with same key. If you don't
  84.     want to encrypt your user information, just leave this field empty.
  85.  
  86.         function Code(inWord, key: string): string;
  87.         var i: byte;
  88.             result: string;
  89.         begin
  90.             result := '';
  91.             for i:=1 to Length(inWord) do
  92.               result := result + chr( ord(inWord[i]) xor
  93.                                       ord(key[(i mod Length(key))+1]));
  94.             Code := result;
  95.         end;
  96.  
  97.  
  98.  
  99.  
  100.  3. Application installation
  101.       To install application made with MIFiles program, you just
  102.     type Install. After welcome note you entered, press enter to
  103.     continue. After that user will have to enter some information
  104.     about him, and also a serial number.
  105.       Identification part is done. Now, user only have to retype or
  106.     just confirm with Enter key destination directory. Program will
  107.     now install application and notify you about succesfull ending.
  108.  
  109.  
  110.  4. Application uninstallation
  111.       Uninstalltion is revers process form installation. That means, the
  112.     program will erase all files that he kreate due installation. User
  113.     have to run Uninstal program and press Enter key for three times.
  114.     Uninstall process will be finish in a second.
  115.  
  116.  
  117.  NOTE! Registered user will get complete manuals.
  118.  
  119.