home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / INSTALL / USER.PVF < prev    next >
Encoding:
Text File  |  1995-10-05  |  1.5 KB  |  30 lines

  1. /* Copyright (c) Oracle Corporation 1994. All Rights Reserved */
  2. /***************************************************************************
  3.   NAME
  4.     user.pvf - user defined .pvf script
  5.  
  6.   DESCRIPTION
  7.     This script allows users access to their own customizable .pvf script
  8.  
  9.   MODIFIED   MM/DD/YY     Reason
  10.   umurthy    01/04/95     Created for Workgroup Server
  11. ******************************************************************************/
  12.  
  13. {
  14.   client_prompt = nls("client_prompt", "At this point, the server part installation of the Oracle7 Workgroup Server is complete. Would you like to proceed with the client installation of the Oracle7 Workgroup Server for Windows NT?");
  15.   client_content = nls("client_content", "Client Part Installation");
  16.   client_help = nls("client_help", "The server part installation of the Oracle7 Workgroup Server is complete. You can choose to either continue to install the client part of the Oracle7 Workgroup Server on the server machine or proceed to end the server installation");
  17.   client_error = nls("client_error","The Client Installation has failed.  To install the client Oracle7 Workgroup Server for Windows NT, please run the Windows Installer from the Windows\install directory."); 
  18.  
  19.   dirname = directory_name(current_script);
  20.   if (directory_name(dirname) == dirname)
  21.     pinname = "%dirname%user.pin";
  22.   else
  23.     pinname = "%dirname%\user.pin";
  24.  
  25.   if (exists(pinname))
  26.     copy_file(pinname,"%installer_home%\");
  27.  
  28.   return(execute("%installer_home%\%operating_system%.pvf"));
  29. }
  30.