/* Let the installer know if this is a bootstrapping sequence. */
bootstrap = TRUE;
/* Let the installer know that it is being run from distribution media. */
distribution = TRUE;
windows_dir = windows_directory();
windows_sys_dir = windows_system_directory();
default_home = "C:\ORAWIN";
alternate_home = "C:\ORA7WIN";
current_home = "";
current_config = "";
default_config = "%windows_dir%\oracle.ini";
home_help = "You are being asked to select the location to which Oracle products are to be installed.";
ver_dll = "%windows_sys_dir%\ver.dll";
windows_30_message = "Oracle products require Windows 3.1. It appears that you are either running a version of Windows prior to 3.1 or that your Windows 3.1 installation has been damaged. Upgrade to Windows 3.1 and rerun the Oracle Installer.";
home_help = "%home_help% Since a home for DOS Oracle products was found using the default location of '%v6_oracle_home%', '%alternate_home%' was selected instead.";
while (TRUE)
{
directory = text_dialog("Enter the complete path to which you wish to install Oracle products:",oracle_home,"Set Oracle Home",home_help);
pathify(directory);
if (directory == v6_oracle_home)
{
information_dialog("You cannot install Windows Oracle products into the same directory as DOS Oracle products.","Windows vs. DOS","The process of installing Windows Oracle products into a DOS Oracle Home may render certain DOS Oracle products unusable.");
continue();
}
{
make_directory(directory);
break();
}
[ 'WRITE_ERROR: { information_dialog("It was not possible to create the directory '%directory%'.","Path Error","The directory '%directory%' could not be made. This could have been caused by not having the write permission needed to create the specified directory." );
continue(); }
'FILE_NOT_FOUND: { information_dialog("The directory you specified, '%directory%', is not valid.","Path Error","The directory '%directory%' could not be made. This could have been caused by entering an improper path or by requiring the Oracle Installer to make more than one directory." );
/* Make sure the Oracle Home directories and the registration file exist. */
{
if (not(exists("%oracle_home%\bin")))
make_directory("%oracle_home%\bin");
if (not(exists("%oracle_home%\dbs")))
make_directory("%oracle_home%\dbs");
if (not(exists("%oracle_home%\orainst")))
make_directory("%oracle_home%\orainst");
}
[ 'WRITE_ERROR: signal('failure,"It was not possible to create a subdirectory in %oracle_home%.");
'FILE_NOT_FOUND: signal('failure,"An internal installer error occurred because of a problem with the operating system."); ]
if (not(exists("%oracle_home%\orainst\windows.rgs")))
create_file("%oracle_home%\orainst\windows.rgs");
{ nls_lang = v7_translate("NLS_LANG");
if (nls_lang == "English")
signal('UNBOUND_ENVIRONMENT_VARIABLE);
}
[ 'UNBOUND_ENVIRONMENT_VARIABLE:
{ nls_lang = "AMERICAN_AMERICA.WE8ISO8859P1" ;
modify("NLS_LANG",nls_lang,ora_config);} ]
reinstall_prompt01 = "The currently installed version of %%product_label%%, %%installed_version%%, is out of date. The currently available version is %%current_version%%. Do you wish to update %%product_label%%?";
reinstall_prompt02 = "WARNING: Not installing the currently available version of %%product_label%%, %%current_version%%, may cause other Oracle products to work improperly.";
reinstall_prompt03 = "WARNING: The currently installed version of %%product_label%% is %%installed_version%%. Are you sure you want to install the old version, %%current_version%%? Doing so may cause other Oracle products to work improperly.";
reinstall_prompt04 = "Version %%installed_version%% of %%product_label%% has already been installed. Would you like to reinstall it?";
deinstall_prompt01 = "WARNING: Other products are dependent on %%registry_label%%. Are you sure you want to deinstall it?";