home *** CD-ROM | disk | FTP | other *** search
- /* Copyright (c) Oracle Corporation 1992. All Rights Reserved */
- /*****************************************************************************
- NAME
- v2back.dei - V3.0.9.2 deinstallation script for V2 Backward Compatibility
-
- DESCRIPTION
- This script deinstalls a V2 Product. It is copied to to v2back<n>.dei.
-
- OWNER
- Kush Deepak Jain
-
- MODIFIED DD-MM-YY Reason
- ekabatch 01-30-92 Made NLS Compliant.
- kjain 01-15-92 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_stubs = nls("deinstalling_stubs","Removing %%registry_label%% Executable Stubs...");
-
- ui_action(instantiate(deinstalling_stubs));
-
- {
- { dos_unstubify("",exe,"EXE"); }
- [ 'FILE_NOT_FOUND: signal('INVALID_FILE_NAME); ]
- }
- [ 'INVALID_FILE_NAME: signal('FAILURE,installation_corrupted); ]
-
- deinstalling_product = nls("deinstalling_product","Removing %%registry_label%%...");
- ui_action(instantiate(deinstalling_product));
-
- remove(exe,"other");
- remove(exe,"exe");
- remove(exe,"nostub");
- remove(deinstl);
- }
- }
-