/* Copyright (c) Oracle Corporation 1997. All Rights Reserved */ /*************************************************************** NAME jre.dei DESCRIPTION This is the product de-installation script for installing the Java(tm) Runtime Environment (JRE) verison 1.1 as licensed to Oracle for distribution. Use of the Java(tm) Runtime Environemnt is covered by the copyright and license statements which accompany the software. MODIFIED MM/DD/YY Reason mclose 05/07/97 Created ****************************************************************/ { { doit = execute("%installer_home%\%operating_system%.dei"); } [ 'UNBOUND_VARIABLE: { required_version = product_version(osinstver); temp = explode(required_version,"."); required_version = implode(list(first(temp),first(rest(temp)), first(rest(rest(temp))), first(rest(rest(rest(temp))))),"."); signal('failure,instantiate(nls("instver_too_early1","The version of the Installer currently running is %%installer_version%%. The installation you have chosen requires version %%required_version%% or later. Please run version %%required_version%% or later in order to perform this installation."))); } ] if(doit) { { jre11 = "%oracle_home%\JRE11"; } [ 'UNBOUND_ENVIRONMENT_VARIABLE, 'OS_ERROR: { variable = variable to be bound; information_dialog(instantiate(deinstall_prompt02), instantiate(deinstall_content02), instantiate(deinstall_help02)); doit = FALSE; } ] } if(doit) { unregistering_product = nls("unregistering_product","Unregistering %%registry_label%%..."); removing_files = nls("removing_files","Removing %%registry_label%% Files..."); ui_action(instantiate(removing_files)); remove(classes); remove(security); remove(lib); remove(bin); remove(license); remove(deinstl); ui_product(registry_label); ui_action(instantiate(unregistering_product)); unregister(current_registry); permit_retry_operations = FALSE; } }