/* Copyright (c) Oracle Corporation 1992. All Rights Reserved */ /***************************************************************************** NAME netc80.ins - Windows NT V8 installation script for the Net 8.0.3 Client Installable patch. DESCRIPTION This script installs patch files for the SQL*Net 2.3 client product OWNER Alyn Kelley MODIFIED DD-MMM-YY Reason ewang 07/14/97 - updated for NET 8.0.3 client jyu 10/24/96 - Updated for SQL*Net 2.3 client akelley 02/24/95 - Created. akelley 01/16/95 - Updated for Shared Oracle compliance. *****************************************************************************/ { /************************************************************************** Start main logic... **************************************************************************/ if (doit) { ins_ratchet = "8.0.6.3.2"; /*********************************************************************** Execute the windows.ins script for standard installation preparation and becuase it is required for Shared Oracle. ***********************************************************************/ execute("%installer_home%\%operating_system%.ins"); ui_product(product_label); permit_retry_operations = TRUE; ui_action(instantiate(installing_executables)); copy(exec); if (platform() != "nt") { copy(ostns,"95"); } else { copy(ostns,"nt"); } ui_action(instantiate(installing_patch)); copy(patch); ui_action(instantiate(registering)); register(current_product); if (member(selected_products,current_product)) reference(current_product); permit_retry_operations = FALSE; } }