home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) Oracle Corporation 1993. All Rights Reserved */
- /*****************************************************************************
- NAME
- orainst2.dei - V3.0.9.2 deinstallation script for V2 Installer
-
- DESCRIPTION
- This script deinstalls the V2 Installer.
-
- OWNER
- Kush Deepak Jain
-
- MODIFIED DD-MM-YY Reason
- kjain 02-03-93 Created.
-
- *****************************************************************************/
- {
- registry_label = registry_interface_label(current_registry);
-
- ui_product(registry_label);
-
- doit = FALSE;
-
- if (unreferenced(current_registry))
- doit = TRUE;
- else if (not(internally_called))
- if (uniquely_self_referenced(current_registry))
- doit = TRUE;
- else
- doit = yesno_dialog(instantiate(deinstall_prompt01),
- instantiate(deinstall_content01),
- instantiate(deinstall_help01));
-
- if (doit)
- {
- unregistering_product = nls("unregistering_product","Unregistering %%registry_label%%...");
- ui_action(instantiate(unregistering_product));
-
- unregister(current_registry);
-
- deinstalling_product = nls("deinstalling_product","Deinstalling %%registry_label%%...");
- ui_action(instantiate(deinstalling_product));
- remove(old);
- remove(exe);
- remove(deinstl);
- }
- else if (not(internally_called))
- unreference(current_registry);
-
- }