home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 February / PCWK0296.iso / po7_win / install / windows.avf < prev    next >
Text File  |  1995-01-06  |  1KB  |  40 lines

  1. /* Copyright (c) Oracle Corporation 1993.  All Rights Reserved */
  2. /*****************************************************************************
  3.   NAME
  4.     windows.avf - V3 ante version analysis script for Windows products.
  5.  
  6.   DESCRIPTION
  7.     This script performs ante version analysis functionality.  In particular,
  8.     it initializes the 'products_for_installation' list so that the Installer
  9.     can report which products need to be implicitly installed as a consequence
  10.     of the user's current configuration and product selection.  Also, 'reboot'
  11.     is initialized to allow scriptwriters to specify reasons for a reboot mes-
  12.     sage to be displayed in windows.pin.
  13.  
  14.   OWNER
  15.     Dan Galatin
  16.  
  17.   MODIFIED    DD-MMM-YY  Reason
  18.     zzerhoun  12/28/94   Initialize remind_list and remind_helps
  19.     zzerhoun  28-DEC-94  Changed installation successful to complete
  20.     dgalatin  25-JUL-94  Moved initialization of 'reboot*' variables to stp
  21.     dgalatin  05-NOV-93  Created.
  22. *****************************************************************************/
  23.  
  24. {
  25.   if (user_action == 'install)
  26.     {
  27.       products_for_installation = list();
  28.       installation_successful = nls("installation_successful","Installation Complete.");
  29.       remove_file("%installer_home%\user.pin");
  30.     }
  31.  
  32.   remind_list = list(); remind_helps = list();
  33.   return(0);
  34. }
  35.  
  36.  
  37.  
  38.  
  39.  
  40.