J2SE 1.4.2 for Windows x64 bit download link

Dear All,
Can any one give me the link to download J2SE 1.4.2 for Windows x64 bit architecture?
Your help is highly appreciated.
Regards,
Syed

There should be no issues with using SAP JVM from the start.
Probably no notes because is straightforward:
- Extract the SAP JVM (e.g. c:\sapjvm_4)
- Set JAVA_HOME (c:\sapjvm_4)
And start installation as per guide.
We have done this recently with Solman 7 EHP1 and NW 7 EHP1 (J2EE stack).
We did have issue on central instance install where the J2EE instance would not start part way through installation (server0 continually crashed and restarted with memory issues) so we had to adjust the instance settings as per SAP Note#1603093, before retrying in SAPINST and continuing.
We had this problem with both Solman & NW 7 EHP1.

Similar Messages

  • ICloud Control Panel 2.0 for Windows 64 bit

    Does iCloud Control Panel 2.0 work with Windows 7 64 bit? If so can you give me the link to the direct iCloud Control Panel for Windows 64 bit.

    Download link for iCloud Control Panel 2.0 for Windows. There is no mention of 32/64 bit versions on the page so presumably this is a 32-bit program capable of running on all flavours of Windows from Vista SP2 upwards.
    tt2

  • Installing  64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64

    Dear all;
    I just downloaded 64-bit ODAC 11.2 Release 3 (11.2.0.2.1) for Windows x64 on my local pc...I am trying to run the install.bat after unzipping the file however, the black pop-up window comes up and disappears almost immediately. Does anyone know what is causing this. Also all help is appreciated with the installation. Kindly note, I have read the installation manual and it is not really helpful.

    this is the content of it
    @echo off
    REM ====================================
    REM ODAC 11.2.0.2.1 XCOPY INSTALL SCRIPT
    REM ====================================
    REM
    REM  This batch file installs components in an Oracle Instant Client Home
    REM
    REM  ====================
    REM  MODIFICATION HISTORY
    REM  ====================
    REM 
    REM  11/15/10 - change version number to 11.2.0.2.1
    REM  06/30/10 - change version number to 11.2.0.1.2
    REM             Add ODP.NET 4 and ASP.NET 4 components
    REM  08/21/09 - change version number to 11.1.0.7.20
    REM  08/21/09 - remove component odp.net 1.x
    REM  01/22/08 - Handle directory names with spaces
    REM  01/22/08 - Fixed oracle.key file generation so that products that rely on
    REM             it can reference the appropriate registry location
    REM  01/22/08 - Log all xcopy operations to the install.log in the destination
    REM             directory
    goto :ParseArgs
    REM **********************
    REM INSTALL ALL COMPONENTS
    REM **********************
    :InstallAll
    REM installing everything so set DEP to false or else dependencies such as
    REM basic client will get installed needlessly by each component
    set DEP=false
    call :basic %1 %2 %3 %4
    call :odp.net20 %1 %2 %3 %4
    call :odp.net4 %1 %2 %3 %4
    call :asp.net %1 %2 %3 %4
    call :asp.net4 %1 %2 %3 %4
    call :oledb %1 %2 %3 %4
    call :oramts %1 %2 %3 %4
    goto :EOF
    REM ************************
    REM INSTALL ASPNET Providers
    REM ************************
    :asp.net
    REM echo Please wait... installing Oracle Providers for ASP.NET
    if {%DEP%} == {true} (
    call :odp.net20 %1 %2 %3 %4
    echo *************************************** >> %2\install.log
    echo Installing Oracle Providers for ASP.NET >> %2\install.log
    echo *************************************** >> %2\install.log
    REM copy the files
    xcopy asp.net %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM pass in false for dependency because odp.net2x files are not copied over yet
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat asp.net %3 false
    call configure.bat asp.net %3 false
    popd
    echo.>> %2\install.log
    echo ************************************** >> %2\install.log
    echo Oracle Providers for ASP.NET installed >> %2\install.log
    echo ************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Providers for ASP.NET installed in an Oracle Instant Client Home.
    goto :EOF
    REM **************************
    REM INSTALL ASPNET Providers 4
    REM **************************
    :asp.net4
    REM echo Please wait... installing Oracle Providers for ASP.NET 4
    if {%DEP%} == {true} (
    call :odp.net4 %1 %2 %3 %4
    echo ***************************************** >> %2\install.log
    echo Installing Oracle Providers for ASP.NET 4 >> %2\install.log
    echo ***************************************** >> %2\install.log
    REM copy the files
    xcopy asp.net4 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM pass in false for dependency because odp.net4 files are not copied over yet
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat asp.net4 %3 false
    call configure.bat asp.net4 %3 false
    popd
    echo.>> %2\install.log
    echo **************************************** >> %2\install.log
    echo Oracle Providers for ASP.NET 4 installed >> %2\install.log
    echo **************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Providers for ASP.NET 4 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *******************
    REM INSTALL ODP.NET 2.0
    REM *******************
    :odp.net20
    REM echo Please wait... installing Oracle Data Provider for .NET 2.0
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ******************************************** >> %2\install.log
    echo Installing Oracle Data Provider for .NET 2.0 >> %2\install.log
    echo ******************************************** >> %2\install.log
    REM copy the files
    xcopy odp.net20 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat odp.net20 %3
    call configure.bat odp.net20 %3
    popd
    echo.>> %2\install.log
    echo ******************************************* >> %2\install.log
    echo Oracle Data Provider for .NET 2.0 installed >> %2\install.log
    echo ******************************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Data Provider for .NET 2.0 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *****************
    REM INSTALL ODP.NET 4
    REM *****************
    :odp.net4
    REM echo Please wait... installing Oracle Data Provider for .NET 4
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ****************************************** >> %2\install.log
    echo Installing Oracle Data Provider for .NET 4 >> %2\install.log
    echo ****************************************** >> %2\install.log
    REM copy the files
    xcopy odp.net4 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat odp.net4 %3
    call configure.bat odp.net4 %3
    popd
    echo.>> %2\install.log
    echo ***************************************** >> %2\install.log
    echo Oracle Data Provider for .NET 4 installed >> %2\install.log
    echo ***************************************** >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Data Provider for .NET 4 installed in an Oracle Instant Client Home.
    goto :EOF
    REM *************
    REM INSTALL OLEDB
    REM *************
    :oledb
    REM echo Please wait... installing Oracle Provider for OLEDB
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ************************************* >> %2\install.log
    echo Installing Oracle Provider for OLE DB >> %2\install.log
    echo ************************************* >> %2\install.log
    REM copy the files
    xcopy oledb %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat oledb %3
    call configure.bat oledb %3
    popd
    echo.>> %2\install.log
    echo ************************************ >> %2\install.log
    echo Oracle Provider for OLE DB installed >> %2\install.log
    echo ************************************ >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Provider for OLEDB installed in an Oracle Instant Client Home.
    goto :EOF
    REM **************
    REM INSTALL ORAMTS
    REM **************
    :oramts
    REM echo Please wait... installing Oracle Services for MTS
    if {%DEP%} == {true} (
    call :basic %1 %2 %3 %4
    echo ********************************** >> %2\install.log
    echo Installing Oracle Services for MTS >> %2\install.log
    echo ********************************** >> %2\install.log
    REM copy the files
    xcopy oramts %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    REM not calling confifure.bat as follows since on Win2k when dir names contain
    REM a space it has issues when retreiving CURRENT DIR in configure.bat
    REM call %2\configure.bat oramts %3
    call configure.bat oramts %3
    popd
    echo.>> %2\install.log
    echo ********************************* >> %2\install.log
    echo Oracle Services for MTS installed >> %2\install.log
    echo ********************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Oracle Services for MTS installed in an Oracle Instant Client Home.
    goto :EOF
    REM ***********************************
    REM INSTALL Basic Oracle Instant Client
    REM ***********************************
    :basic
    REM echo Please wait... installing Basic Oracle Instant Client
    echo ************************************** >> %2\install.log
    echo Installing Basic Oracle Instant Client >> %2\install.log
    echo ************************************** >> %2\install.log
    REM copy the files
    xcopy instantclient_11_2 %2 /E /F /R /Y >> %2\install.log
    echo.>> %2\install.log
    pushd %2
    call configure.bat basic %3
    popd
    echo.>> %2\install.log
    echo ************************************* >> %2\install.log
    echo Basic Oracle Instant Client installed >> %2\install.log
    echo ************************************* >> %2\install.log
    echo.>> %2\install.log
    REM echo Basic Oracle Instant Client installed.
    REM echo.
    REM echo Please prepend %2 and %2\bin to system path environment variable
    goto :EOF
    REM =======================
    REM Parse Script Arguments
    REM =======================
    :ParseArgs
    if /i {%1} == {} goto :Usage
    if /i {%2} == {} goto :Usage
    if /i {%3} == {} goto :Usage
    if /i {%1} == {-h} goto :Usage
    if /i {%1} == {-help} goto :Usage
    REM install dependencies or not - default is true
    set DEP=true
    if /i {%4} == {false} set DEP=false
    if NOT EXIST %2\*.* (
      mkdir %2 > NUL 2>&1
    echo ****************** >> %2\install.log
    echo ODAC install files >> %2\install.log
    echo ****************** >> %2\install.log
    REM /R to overwrite readonly files at destination
    REM /Y to overwrite an existing file without prompting
    xcopy configure.bat %2 /R /Y /F >> %2\install.log
    xcopy unconfigure.bat %2 /R /Y /F >> %2\install.log
    xcopy uninstall.bat %2 /R /Y /F >> %2\install.log
    echo.>> %2\install.log
    if /i {%1} == {basic}     goto :basic
    if /i {%1} == {odp.net20} goto :odp.net20
    if /i {%1} == {odp.net2}  goto :odp.net20
    if /i {%1} == {odp.net4}  goto :odp.net4
    if /i {%1} == {asp.net}   goto :asp.net
    if /i {%1} == {asp.net2}  goto :asp.net
    if /i {%1} == {asp.net4}  goto :asp.net4
    if /i {%1} == {oledb}     goto :oledb
    if /i {%1} == {oramts}    goto :oramts
    if /i {%1} == {all}       goto :InstallAll
    goto :Usage
    :Usage
    echo.
    echo Usage:
    echo   install.bat component_name oracle_home_path oracle_home_name [install_dependents]
    echo.
    echo Example:
    echo   install.bat all       c:\oracle myhome       (install all components)
    echo   install.bat odp.net2  c:\oracle myhome true  (install ODP.NET 2 and its dependent components)
    echo   install.bat odp.net4  c:\oracle myhome true  (install ODP.NET 4 and its dependent components)
    echo   install.bat asp.net2  c:\oracle myhome true  (install ASP.NET Providers 2 and its dependent components)
    echo   install.bat asp.net4  c:\oracle myhome true  (install ASP.NET Providers 4 and its dependent components)
    echo   install.bat oledb     c:\oracle myhome true  (install OraOLEDB and its dependent components)
    echo   install.bat oramts    c:\oracle myhome true  (install ORAMTS and its dependent components)
    echo   install.bat basic     c:\oracle myhome false (install Oracle Instant Client)
    goto :EOF

  • New Driver Creative Sound Blaster Live! 24-bit 1.04.0050 WHQL For Windows x64

    This is the new  Official Audio driver  released by Creative for  Sound Blaster Live! 24-bit for Windows x64.
    You can not install this driver in your MSI nForce4 based boards without first applying the OnBoard Sound EEPROM fix first found  here
    You have to boot in win98 or  winMe using a boot diskette in order to run the fix.
    enjoy 
    Markoul

    Quote from: Markoul on 22-May-05, 00:07:32
    This is the new  Official Audio driver  released by Creative for  Sound Blaster Live! 24-bit for Windows x64.
    You can not install this driver in your MSI nForce4 based boards without first applying the OnBoard Sound EEPROM fix first found  here
    You have to boot in win98 or  winMe using a boot diskette in order to run the fix.
    enjoy 
    Markoul
    Have you actually tired it yourself?  I'm wondering if this is a workaround, or will this be the official solution.  I wouldn't mind trying it, but I don't want to mess it up for when the Official driver is released.

  • JRE for Windows 64 bit on Intel

    Hello,
    in Supported System Configurations Windows AMD64/EM64T 64-bit mode is shown as not supported.
    In the release notes (1.5.0_04) the following is written:
    With the release, J2SE support for Windows 64-bit has progressed from release candidate to final release. This version runs on AMD64/EM64T 64-bit mode machines with Windows Server 2003 x64 Editions.
    What is right?
    Is jre-1_5_0_05-windows-amd64.exe the right file for Windows Server 2003 x64 Editions on Intel processor?
    What about Windows XP Professional x64 Edition?
    regards,
    Sven

    You're not going to get them from Apple. I have Vista Ultimate 64 installed in Boot Camp and had to find video and network drivers on my own. The built-in iSight doesn't work and neither does the other MacBook specific features. I use Windows sparingly so it's good enough for my usage.

  • Oracle Database Express Edition 11g Release 2 for Windows 64 bit?

    Will there be any "Oracle 11g xe" is available for windows 64 bit in future?
    I know using 32b apps on 64b doesn't make any sense, still want to know if there is any way to execute current 32 bit version on 64 bit cleanly?

    Probably not any time real soon, XE doesn't get much priority on the development side of things.
    I've gotten the XE to install OK on Windows server, Standard ed. 2008R2 x64 but it was a very long time ago.
    >>using 32b apps on 64b doesn't make any sense
    But it can work, in most all cases. Unfortunately the XE installer is one of the exceptions. Definitely can't go the other way, e.g. install x64 software on an x86 OS. And an x86 OS can be installed on x64 hardware, but that isn't much help either. But if host memory is tight, going x86 will have slightly smaller memory footprints. Many reasons for going x64, saving memory is not one of 'em.
    What can work is try the Linux version of XE, it is x64. Might take perhaps a half hour to install Virtual Box and set up a virtual machine with e.g. Fedora and boot the VM, install, maybe another half hour or so to get the OS updates.
    My preference is for the KDE desktop, its a bit closer to a Windows look and feel than the Gnome desktop. Linux will be different, but really, its the same thing. An OS provides and controls access to resources, e.g. memory, disks, all the peripherals (keyboard, mouse, NIC, etc.). XE can work in a VM with 1GiB total RAM for a VM, but more is better. The OS needs memory too.
    It also helps with the XE install to customize the disk partition layout at the OS install, adjust swap space to at least a full 2GiB.

  • No PKCS#11 support in JDK 6 Update 14 for Windows x64?

    Hi there,
    I successfully installed GlassFish 2.1 on Windows 2008 x64 with JDK 6 Update 13 for x64. Everything was ok until I wanted to access my USB token with a certificate on it trough an EJB.
    I then had to reinstall everything based on 32-bit versions. Now it works again, but I'm not very satisfied with the solution because I wanted to have everything based 64-bit.
    Why JDK 6 Update 14 for Windows x64 does not contain PKCS#11 support? When you have look to the x86 version support is available there.

    If you load successfully your pkcs11 lib into java 32bit mean that the lib is 32bit.
    You cannot load a 32bit native lib into java 64bit ( http://java.sun.com/docs/hotspot/HotSpotFAQ.html#64bit_native_porting ).
    If you find the 64bit lib for your token, you should be able to use java64.

  • Issue in Oracle 12C Installation for windows 64 bit

    a) I have downloaded Oracle Database 12c from http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html for windows 64 bit
    b) Unzipped both of the files and have click on setup file in file1
    c) It is stuck at 59% i.e., at setup
    Below is the part of log file
    installcommand = "E:\app\j1013565\product\12.1.0\dbhome_1\oraconfig\ocfgperm" -al {A1F205B4-4418-11D2-B2F1-00805FC19E2E} set SYSTEM permit
    deinstallcommand = null
    WaitForCompletion = true
    INFO: spawning '"E:\app\j1013565\product\12.1.0\dbhome_1\oraconfig\ocfgperm" -al {A1F205B4-4418-11D2-B2F1-00805FC19E2E} set SYSTEM permit'
    INFO: spawning '"E:\app\j1013565\product\12.1.0\dbhome_1\oraconfig\ocfgperm" -al {A1F205B4-4418-11D2-B2F1-00805FC19E2E} set SYSTEM permit'
    INFO:
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig
    destination = E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig
    variables = null
    encoding = null
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig'.
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig'.
    INFO: Calling Action fileActions11.2.0.2.0  appendFileEx
    source = E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig
    destination = E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat
    permissions = null
    owner = null
    group = null
    INFO: copying 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig'
    INFO: copying 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.oraconfig'
    INFO: updating 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.
    INFO: updating 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\selecthome.bat.
    INFO: Setting up 'Database Configuration and Upgrade Assistants 12.1.0.1.0 '
    INFO: Setting up 'Database Configuration and Upgrade Assistants 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Database Configuration and Upgrade Assistants
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
    selectedNodes = null
    Key = HKEY_LOCAL_MACHINE
    SubKey = SOFTWARE\ORACLE\KEY_OraDB12Home1
    value = ORACLE_BASE
    data = E:\app\j1013565
    updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.sbs
    destination = E:\app\j1013565\product\12.1.0\dbhome_1\bin\dbca.bat
    variables = null
    encoding = null
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.sbs'.
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.sbs'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.sbs
    INFO: deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.sbs'
    INFO: deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.sbs'
    INFO: Calling Action ntw32FoldersActions10.2.0.3.0  ntCreateItem
    selectedNodes = null
    groupName = Oracle - OraDB12Home1\Configuration and Migration Tools
    itemName = Database Configuration Assistant
    exeName = E:\app\j1013565\product\12.1.0\dbhome_1\bin\launch.exe
    paramName = null
    workingDir = E:\app\j1013565\product\12.1.0\dbhome_1\bin
    iconFileName = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\dbca.ico
    icon = null
    cmdType = null
    multiparamName = E:\app\j1013565\product\12.1.0\dbhome_1\bin,dbca.cl
    runAsAdmin = 1
    INFO: creating 'Database Configuration Assistant' in folder 'Oracle - OraDB12Home1\Configuration and Migration Tools'
    INFO: creating 'Database Configuration Assistant' in folder 'Oracle - OraDB12Home1\Configuration and Migration Tools'
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\instdbca.cl
    destination = E:\app\j1013565\product\12.1.0\dbhome_1\bin\dbca.cl
    variables = null
    encoding = null
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\instdbca.cl'.
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\instdbca.cl'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\instdbca.cl
    INFO: deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\instdbca.cl'
    INFO: deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbca\instdbca.cl'
    INFO: Calling Action ntw32FoldersActions10.2.0.3.0  ntCreateItem
    selectedNodes = null
    groupName = Oracle - OraDB12Home1\Configuration and Migration Tools
    itemName = Database Upgrade Assistant
    exeName = E:\app\j1013565\product\12.1.0\dbhome_1\bin\launch.exe
    paramName = null
    workingDir = E:\app\j1013565\product\12.1.0\dbhome_1\bin
    iconFileName = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbma.ico
    icon = null
    cmdType = null
    multiparamName = E:\app\j1013565\product\12.1.0\dbhome_1\bin,dbua.cl
    runAsAdmin = 1
    INFO: creating 'Database Upgrade Assistant' in folder 'Oracle - OraDB12Home1\Configuration and Migration Tools'
    INFO: creating 'Database Upgrade Assistant' in folder 'Oracle - OraDB12Home1\Configuration and Migration Tools'
    INFO: Calling Action fileActions11.2.0.2.0  instantiateFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbua.sbs
    destination = E:\app\j1013565\product\12.1.0\dbhome_1\bin\dbua.bat
    variables = null
    encoding = null
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbua.sbs'.
    INFO: instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbua.sbs'.
    INFO: Calling Action fileActions11.2.0.2.0  removeFile
    selectedNodes = null
    source = E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbua.sbs
    INFO: deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbua.sbs'
    INFO: deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\dbua\dbua.sbs'
    INFO: Calling Query fileQueries10.1.0.3.0  exists
    filename = E:\app\j1013565\product\12.1.0\dbhome_1\bin\emdwgrd
    INFO: Query Returned: false
    INFO: Setting up 'Oracle JVM 12.1.0.1.0 '
    INFO: Setting up 'Oracle JVM 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle JVM
    INFO: Setting up 'Oracle Advanced Security 12.1.0.1.0 '
    INFO: Setting up 'Oracle Advanced Security 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle Advanced Security
    INFO: Setting up 'Oracle Internet Directory Client 12.1.0.1.0 '
    INFO: Setting up 'Oracle Internet Directory Client 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle Internet Directory Client
    INFO: Setting up 'Oracle Net Listener 12.1.0.1.0 '
    INFO: Setting up 'Oracle Net Listener 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle Net Listener
    INFO: Setting up 'HAS Files for DB 12.1.0.1.0 '
    INFO: Setting up 'HAS Files for DB 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component HAS Files for DB
    INFO: Setting up 'Oracle Text 12.1.0.1.0 '
    INFO: Setting up 'Oracle Text 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle Text
    INFO: Setting up 'Oracle Net Services 12.1.0.1.0 '
    INFO: Setting up 'Oracle Net Services 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle Net Services
    INFO: Setting up 'Oracle Database 12c 12.1.0.1.0 '
    INFO: Setting up 'Oracle Database 12c 12.1.0.1.0 '
    INFO: 7/11/13 3:24:16 PM CAT: Starting install Install Phase 2 of component Oracle Database 12c
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
    selectedNodes =
    Key = HKEY_LOCAL_MACHINE
    SubKey = SOFTWARE\ORACLE\KEY_OraDB12Home1
    value = RDBMS_CONTROL
    data = E:\app\j1013565\product\12.1.0\dbhome_1\DATABASE
    updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    INFO: Calling Action w32RegActions10.2.0.1.0  RegSetValue
    selectedNodes =
    Key = HKEY_LOCAL_MACHINE
    SubKey = SOFTWARE\ORACLE\KEY_OraDB12Home1
    value = RDBMS_ARCHIVE
    data = E:\app\j1013565\product\12.1.0\dbhome_1\DATABASE\ARCHIVE
    updateType = null
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    INFO: updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    INFO: Calling Query UtilQueries12.1.0.1.0  GetNTUserName
    INFO: Query Returned: JDA\j1013565
    INFO: Calling Action ntGrpActionLib10.2.0.1.0  AddToOraDbaGroup
    oradimLocation = E:\app\j1013565\product\12.1.0\dbhome_1\bin
    userName = JDA\j1013565
    isRAC = false
    nodeList =
    It is stuck at this point
    Below is the log which is generated at UI
    Verifying whether Central Inventory is locked by any other OUI session...
    Central Inventory is not locked.
    Loading products list. Please wait.
    Loading products. Please wait.
    Analyzing dependencies
    Setting up install types
    Executing pre-requisites
    Loading Oracle Database 12c
    Loading Enterprise Edition Options
    Loading Oracle Partitioning
    Loading Oracle Spatial and Graph
    Loading Oracle OLAP
    Loading Oracle Database 12c
    Loading Oracle Net Services
    Loading Oracle Text
    Loading HAS Files for DB
    Loading Oracle Net Listener
    Loading Oracle Internet Directory Client
    Loading Oracle Advanced Security
    Loading Oracle JVM
    Loading Database Configuration and Upgrade Assistants
    Loading Oracle Remote Configuration Agent
    Loading Oracle XML Development Kit
    Loading Oracle Multimedia
    Loading Oracle Multimedia Locator
    Loading SQL*Plus
    Loading Oracle Netca Client
    Loading Oracle Call Interface (OCI)
    Loading Oracle Programmer
    Loading Oracle Database Gateway for ODBC
    Loading Generic Connectivity Common Files
    Loading Oracle Database Utilities
    Loading Oracle Notification Service
    Loading Oracle Net
    Loading Assistant Common Files
    Loading Oracle Help for Java
    Loading Oracle Help Share Library
    Loading Oracle Database User Interface
    Loading Oracle Java Layout Engine
    Loading Buildtools Common Files
    Loading Oracle LDAP administration
    Loading Installation Common Files
    Loading Installation Plugin Files
    Loading Oracle Ice Browser
    Loading Oracle Windows Interfaces
    Loading Oracle Services For Microsoft Transaction Server
    Loading Oracle Wallet Manager
    Loading Oracle Security Developer Tools
    Loading XML Parser for Java
    Loading Oracle Net Java Required Support Files
    Loading Oracle Database Extensions for .NET
    Loading Deinstallation Tool
    Loading Oracle Providers for ASP.NET
    Loading PL/SQL
    Loading Oracle Recovery Manager
    Loading Precompiler Common Files
    Loading SQL*Plus Files for Instant Client
    Loading Oracle Extended Windowing Toolkit
    Loading Precompilers
    Loading Database SQL Scripts
    Loading OLAP SQL Scripts
    Loading PL/SQL Embedded Gateway
    Loading Oracle Administration Assistant for Windows
    Loading Database Migration Assistant for Unicode
    Loading Oracle Java Client
    Loading Oracle JDBC/THIN Interfaces
    Loading Oracle Multimedia Client Option
    Loading Oracle Universal Connection Pool
    Loading Secure Socket Layer
    Loading Oracle ODBC Driver
    Loading HAS Common Files
    Loading Oracle JVM For Core
    Loading Oracle Containers for Java
    Loading JAccelerator (COMPANION)
    Loading Oracle Provider for OLE DB
    Loading Oracle Quality of Service Management (Client)
    Loading Oracle Database Deconfiguration
    Loading Oracle Data Provider for .NET
    Loading Required Support Files
    Loading Oracle JDBC/OCI Instant Client
    Loading XML Parser for Oracle JVM
    Loading Oracle Core XML Development Kit
    Loading Oracle XML Query
    Loading Oracle Message Gateway Common Files
    Loading Oracle Starter Database
    Loading Sample Schema Data
    Loading Oracle Core Required Support Files
    Loading Oracle Core Required Support Files for Core DB
    Loading Oracle Multimedia Locator RDBMS Files
    Loading Oracle Multimedia Locator Java Required Support Files
    Loading Oracle Globalization Support
    Loading Oracle Multimedia Java Advanced Imaging
    Loading Oracle Database 12c Multimedia Files
    Loading Precompiler Required Support Files
    Loading Oracle Text for Core
    Loading Oracle Text ATG Language Support Files
    Loading Oracle Notification Service (eONS)
    Loading Parser Generator Required Support Files
    Loading RDBMS Required Support Files
    Loading Precompiler Common Files for Core
    Loading Database Workspace Manager
    Loading SQLJ Runtime
    Loading RDBMS Required Support Files Runtime
    Loading Oracle Notification Service for Instant Client
    Loading Oracle Application Express
    Loading Oracle SQL Developer
    Loading Oracle JDBC Server Support Package
    Loading Oracle RAC Required Support Files-HAS
    Loading Platform Required Support Files
    Loading XDK Required Support Files
    Loading Oracle Net Required Support Files
    Loading Oracle Database Vault option
    Loading Oracle Clusterware RDBMS Files
    Loading Oracle OLAP API
    Loading Oracle OLAP RDBMS Files
    Loading Oracle Data Mining RDBMS Files
    Loading SSL Required Support Files for InstantClient
    Loading Oracle Locale Builder
    Loading Oracle Label Security
    Loading Oracle Real Application Testing
    Loading Oracle R Enterprise Server Files
    Loading Perl Interpreter
    Loading LDAP Required Support Files
    Loading Perl Modules
    Loading Expat libraries
    Loading Cluster Verification Utility Common Files
    Loading Oracle JFC Extended Windowing Toolkit
    Loading RDBMS Required Support Files for Instant Client
    Loading Oracle Globalization Support For Core
    Loading Oracle ODBC Driverfor Instant Client
    Loading Oracle Bali Share
    Loading Oracle Globalization Support
    Loading Oracle Configuration Manager
    Loading Oracle Configuration Manager Client
    Loading Oracle DBCA Deconfiguration
    Loading Oracle RAC Deconfiguration
    Loading Oracle Configuration Manager Deconfiguration
    Loading Oracle USM Deconfiguration
    Loading Oracle Universal Installer
    Loading Oracle One-Off Patch Installer
    Loading Installer SDK Component
    Loading oracle.swd.oui.core.min
    Loading Sun JDK
    Loading dialogs for Oracle Database 12c
    Loading dialogs for Enterprise Edition Options
    Loading dialogs for Oracle Partitioning
    Loading dialogs for Oracle Spatial and Graph
    Loading dialogs for Oracle OLAP
    Loading dialogs for Oracle Database 12c
    Loading dialogs for Oracle Net Services
    Loading dialogs for Oracle Text
    Loading dialogs for HAS Files for DB
    Loading dialogs for Oracle Net Listener
    Loading dialogs for Oracle Internet Directory Client
    Loading dialogs for Oracle Advanced Security
    Loading dialogs for Oracle JVM
    Loading dialogs for Database Configuration and Upgrade Assistants
    Loading dialogs for Oracle Remote Configuration Agent
    Loading dialogs for Oracle XML Development Kit
    Loading dialogs for Oracle Multimedia
    Loading dialogs for Oracle Multimedia Locator
    Loading dialogs for SQL*Plus
    Loading dialogs for Oracle Netca Client
    Loading dialogs for Oracle Call Interface (OCI)
    Loading dialogs for Oracle Programmer
    Loading dialogs for Oracle Database Gateway for ODBC
    Loading dialogs for Generic Connectivity Common Files
    Loading dialogs for Oracle Database Utilities
    Loading dialogs for Oracle Notification Service
    Loading dialogs for Oracle Net
    Loading dialogs for Assistant Common Files
    Loading dialogs for Oracle Help for Java
    Loading dialogs for Oracle Help Share Library
    Loading dialogs for Oracle Database User Interface
    Loading dialogs for Oracle Java Layout Engine
    Loading dialogs for Buildtools Common Files
    Loading dialogs for Oracle LDAP administration
    Loading dialogs for Installation Common Files
    Loading dialogs for Installation Plugin Files
    Loading dialogs for Oracle Ice Browser
    Loading dialogs for Oracle Windows Interfaces
    Loading dialogs for Oracle Services For Microsoft Transaction Server
    Loading dialogs for Oracle Wallet Manager
    Loading dialogs for Oracle Security Developer Tools
    Loading dialogs for XML Parser for Java
    Loading dialogs for Oracle Net Java Required Support Files
    Loading dialogs for Oracle Database Extensions for .NET
    Loading dialogs for Deinstallation Tool
    Loading dialogs for Oracle Providers for ASP.NET
    Loading dialogs for PL/SQL
    Loading dialogs for Oracle Recovery Manager
    Loading dialogs for Precompiler Common Files
    Loading dialogs for SQL*Plus Files for Instant Client
    Loading dialogs for Oracle Extended Windowing Toolkit
    Loading dialogs for Precompilers
    Loading dialogs for Database SQL Scripts
    Loading dialogs for OLAP SQL Scripts
    Loading dialogs for PL/SQL Embedded Gateway
    Loading dialogs for Oracle Administration Assistant for Windows
    Loading dialogs for Database Migration Assistant for Unicode
    Loading dialogs for Oracle Java Client
    Loading dialogs for Oracle JDBC/THIN Interfaces
    Loading dialogs for Oracle Multimedia Client Option
    Loading dialogs for Oracle Universal Connection Pool
    Loading dialogs for Secure Socket Layer
    Loading dialogs for Oracle ODBC Driver
    Loading dialogs for HAS Common Files
    Loading dialogs for Oracle JVM For Core
    Loading dialogs for Oracle Containers for Java
    Loading dialogs for JAccelerator (COMPANION)
    Loading dialogs for Oracle Provider for OLE DB
    Loading dialogs for Oracle Quality of Service Management (Client)
    Loading dialogs for Oracle Database Deconfiguration
    Loading dialogs for Oracle Data Provider for .NET
    Loading dialogs for Required Support Files
    Loading dialogs for Oracle JDBC/OCI Instant Client
    Loading dialogs for XML Parser for Oracle JVM
    Loading dialogs for Oracle Core XML Development Kit
    Loading dialogs for Oracle XML Query
    Loading dialogs for Oracle Message Gateway Common Files
    Loading dialogs for Oracle Starter Database
    Loading dialogs for Sample Schema Data
    Loading dialogs for Oracle Core Required Support Files
    Loading dialogs for Oracle Core Required Support Files for Core DB
    Loading dialogs for Oracle Multimedia Locator RDBMS Files
    Loading dialogs for Oracle Multimedia Locator Java Required Support Files
    Loading dialogs for Oracle Globalization Support
    Loading dialogs for Oracle Multimedia Java Advanced Imaging
    Loading dialogs for Oracle Database 12c Multimedia Files
    Loading dialogs for Precompiler Required Support Files
    Loading dialogs for Oracle Text for Core
    Loading dialogs for Oracle Text ATG Language Support Files
    Loading dialogs for Oracle Notification Service (eONS)
    Loading dialogs for Parser Generator Required Support Files
    Loading dialogs for RDBMS Required Support Files
    Loading dialogs for Precompiler Common Files for Core
    Loading dialogs for Database Workspace Manager
    Loading dialogs for SQLJ Runtime
    Loading dialogs for RDBMS Required Support Files Runtime
    Loading dialogs for Oracle Notification Service for Instant Client
    Loading dialogs for Oracle Application Express
    Loading dialogs for Oracle SQL Developer
    Loading dialogs for Oracle JDBC Server Support Package
    Loading dialogs for Oracle RAC Required Support Files-HAS
    Loading dialogs for Platform Required Support Files
    Loading dialogs for XDK Required Support Files
    Loading dialogs for Oracle Net Required Support Files
    Loading dialogs for Oracle Database Vault option
    Loading dialogs for Oracle Clusterware RDBMS Files
    Loading dialogs for Oracle OLAP API
    Loading dialogs for Oracle OLAP RDBMS Files
    Loading dialogs for Oracle Data Mining RDBMS Files
    Loading dialogs for SSL Required Support Files for InstantClient
    Loading dialogs for Oracle Locale Builder
    Loading dialogs for Oracle Label Security
    Loading dialogs for Oracle Real Application Testing
    Loading dialogs for Oracle R Enterprise Server Files
    Loading dialogs for Perl Interpreter
    Loading dialogs for LDAP Required Support Files
    Loading dialogs for Perl Modules
    Loading dialogs for Expat libraries
    Loading dialogs for Cluster Verification Utility Common Files
    Loading dialogs for Oracle JFC Extended Windowing Toolkit
    Loading dialogs for RDBMS Required Support Files for Instant Client
    Loading dialogs for Oracle Globalization Support For Core
    Loading dialogs for Oracle ODBC Driverfor Instant Client
    Loading dialogs for Oracle Bali Share
    Loading dialogs for Oracle Globalization Support
    Loading dialogs for Oracle Configuration Manager
    Loading dialogs for Oracle Configuration Manager Client
    Loading dialogs for Oracle DBCA Deconfiguration
    Loading dialogs for Oracle RAC Deconfiguration
    Loading dialogs for Oracle Configuration Manager Deconfiguration
    Loading dialogs for Oracle USM Deconfiguration
    Loading dialogs for Oracle Universal Installer
    Loading dialogs for Oracle One-Off Patch Installer
    Loading dialogs for Installer SDK Component
    Loading dialogs for oracle.swd.oui.core.min
    Loading dialogs for Sun JDK
    Processing Oracle Database 12c 12.1.0.1.0
    Processing Enterprise Edition Options 12.1.0.1.0
    Processing Oracle Partitioning 12.1.0.1.0
    Processing Oracle Spatial and Graph 12.1.0.1.0
    Processing Oracle OLAP 12.1.0.1.0
    Processing Oracle Database 12c 12.1.0.1.0
    Processing Oracle Net Services 12.1.0.1.0
    Processing Oracle Text 12.1.0.1.0
    Processing HAS Files for DB 12.1.0.1.0
    Processing Oracle Net Listener 12.1.0.1.0
    Processing Oracle Internet Directory Client 12.1.0.1.0
    Processing Oracle Advanced Security 12.1.0.1.0
    Processing Oracle JVM 12.1.0.1.0
    Processing Database Configuration and Upgrade Assistants 12.1.0.1.0
    Processing Oracle Remote Configuration Agent 12.1.0.1.0
    Processing Oracle XML Development Kit 12.1.0.1.0
    Processing Oracle Multimedia 12.1.0.1.0
    Processing Oracle Multimedia Locator 12.1.0.1.0
    Processing SQL*Plus 12.1.0.1.0
    Processing Oracle Netca Client 12.1.0.1.0
    Processing Oracle Call Interface (OCI) 12.1.0.1.0
    Processing Oracle Programmer 12.1.0.1.0
    Processing Oracle Database Gateway for ODBC 12.1.0.1.0
    Processing Generic Connectivity Common Files 12.1.0.1.0
    Processing Oracle Database Utilities 12.1.0.1.0
    Processing Oracle Notification Service 12.1.0.1.0
    Processing Oracle Net 12.1.0.1.0
    Processing Assistant Common Files 12.1.0.1.0
    Processing Oracle Help for Java 11.1.1.6.0
    Processing Oracle Help Share Library 11.1.1.6.0
    Processing Oracle Database User Interface 11.0.0.0.0
    Processing Oracle Java Layout Engine 11.0.0.0.0
    Processing Buildtools Common Files 12.1.0.1.0
    Processing Oracle LDAP administration 12.1.0.1.0
    Processing Installation Common Files 12.1.0.1.0
    Processing Installation Plugin Files 12.1.0.1.0
    Processing Oracle Ice Browser 11.1.1.6.0
    Processing Oracle Windows Interfaces 12.1.0.1.0
    Processing Oracle Services For Microsoft Transaction Server 12.1.0.1.0
    Processing Oracle Wallet Manager 12.1.0.1.0
    Processing Oracle Security Developer Tools 12.1.0.1.0
    Processing XML Parser for Java 12.1.0.1.0
    Processing Oracle Net Java Required Support Files 12.1.0.1.0
    Processing Oracle Database Extensions for .NET 12.1.0.1.0
    Processing Deinstallation Tool 12.1.0.1.0
    Processing Oracle Providers for ASP.NET 12.1.0.1.0
    Processing PL/SQL 12.1.0.1.0
    Processing Oracle Recovery Manager 12.1.0.1.0
    Processing Precompiler Common Files 12.1.0.1.0
    Processing SQL*Plus Files for Instant Client 12.1.0.1.0
    Processing Oracle Extended Windowing Toolkit 11.1.1.6.0
    Processing Precompilers 12.1.0.1.0
    Processing Database SQL Scripts 12.1.0.1.0
    Processing OLAP SQL Scripts 12.1.0.1.0
    Processing PL/SQL Embedded Gateway 12.1.0.1.0
    Processing Oracle Administration Assistant for Windows 12.1.0.1.0
    Processing Database Migration Assistant for Unicode 12.1.0.1.0
    Processing Oracle Java Client 12.1.0.1.0
    Processing Oracle JDBC/THIN Interfaces 12.1.0.1.0
    Processing Oracle Multimedia Client Option 12.1.0.1.0
    Processing Oracle Universal Connection Pool 12.1.0.1.0
    Processing Secure Socket Layer 12.1.0.1.0
    Processing Oracle ODBC Driver 12.1.0.1.0
    Processing HAS Common Files 12.1.0.1.0
    Processing Oracle JVM For Core 12.1.0.1.0
    Processing Oracle Containers for Java 12.1.0.1.0
    Processing JAccelerator (COMPANION) 12.1.0.1.0
    Processing Oracle Provider for OLE DB 12.1.0.1.0
    Processing Oracle Quality of Service Management (Client) 12.1.0.1.0
    Processing Oracle Database Deconfiguration 12.1.0.1.0
    Processing Oracle Data Provider for .NET 12.1.0.1.0
    Processing Required Support Files 12.1.0.1.0
    Processing Oracle JDBC/OCI Instant Client 12.1.0.1.0
    Processing XML Parser for Oracle JVM 12.1.0.1.0
    Processing Oracle Core XML Development Kit 12.1.0.1.0
    Processing Oracle XML Query 12.1.0.1.0
    Processing Oracle Message Gateway Common Files 12.1.0.1.0
    Processing Oracle Starter Database 12.1.0.1.0
    Processing Sample Schema Data 12.1.0.1.0
    Processing Oracle Core Required Support Files 12.1.0.1.0
    Processing Oracle Core Required Support Files for Core DB 12.1.0.1.0
    Processing Oracle Multimedia Locator RDBMS Files 12.1.0.1.0
    Processing Oracle Multimedia Locator Java Required Support Files 12.1.0.1.0
    Processing Oracle Globalization Support 12.1.0.1.0
    Processing Oracle Multimedia Java Advanced Imaging 12.1.0.1.0
    Processing Oracle Database 12c Multimedia Files 12.1.0.1.0
    Processing Precompiler Required Support Files 12.1.0.1.0
    Processing Oracle Text for Core 12.1.0.1.0
    Processing Oracle Text ATG Language Support Files 12.1.0.1.0
    Processing Oracle Notification Service (eONS) 12.1.0.1.0
    Processing Parser Generator Required Support Files 12.1.0.1.0
    Processing RDBMS Required Support Files 12.1.0.1.0
    Processing Precompiler Common Files for Core 12.1.0.1.0
    Processing Database Workspace Manager 12.1.0.1.0
    Processing SQLJ Runtime 12.1.0.1.0
    Processing RDBMS Required Support Files Runtime 12.1.0.1.0
    Processing Oracle Notification Service for Instant Client 12.1.0.1.0
    Processing Oracle Application Express 12.1.0.1.0
    Processing Oracle SQL Developer 12.1.0.1.0
    Processing Oracle JDBC Server Support Package 12.1.0.1.0
    Processing Oracle RAC Required Support Files-HAS 12.1.0.1.0
    Processing Platform Required Support Files 12.1.0.1.0
    Processing XDK Required Support Files 12.1.0.1.0
    Processing Oracle Net Required Support Files 12.1.0.1.0
    Processing Oracle Database Vault option 12.1.0.1.0
    Processing Oracle Clusterware RDBMS Files 12.1.0.1.0
    Processing Oracle OLAP API 12.1.0.1.0
    Processing Oracle OLAP RDBMS Files 12.1.0.1.0
    Processing Oracle Data Mining RDBMS Files 12.1.0.1.0
    Processing SSL Required Support Files for InstantClient 12.1.0.1.0
    Processing Oracle Locale Builder 12.1.0.1.0
    Processing Oracle Label Security 12.1.0.1.0
    Processing Oracle Real Application Testing 12.1.0.1.0
    Processing Oracle R Enterprise Server Files 12.1.0.1.0
    Processing Perl Interpreter 5.14.1.0.0
    Processing LDAP Required Support Files 12.1.0.1.0
    Processing Perl Modules 5.14.1.0.0
    Processing Expat libraries 2.0.1.0.2
    Processing Cluster Verification Utility Common Files 12.1.0.1.0
    Processing Oracle JFC Extended Windowing Toolkit 11.1.1.6.0
    Processing RDBMS Required Support Files for Instant Client 12.1.0.1.0
    Processing Oracle Globalization Support For Core 12.1.0.1.0
    Processing Oracle ODBC Driverfor Instant Client 12.1.0.1.0
    Processing Oracle Bali Share 11.1.1.6.0
    Processing Oracle Globalization Support 12.1.0.1.0
    Processing Oracle Configuration Manager 10.3.7.0.3
    Processing Oracle Configuration Manager Client 10.3.2.1.0
    Processing Oracle DBCA Deconfiguration 12.1.0.1.0
    Processing Oracle RAC Deconfiguration 12.1.0.1.0
    Processing Oracle Configuration Manager Deconfiguration 10.3.1.0.0
    Processing Oracle USM Deconfiguration 12.1.0.1.0
    Processing Oracle Universal Installer 12.1.0.1.0
    Processing Oracle One-Off Patch Installer 12.1.0.1.0
    Processing Installer SDK Component 12.1.0.1.0
    Processing oracle.swd.oui.core.min 12.1.0.1.0
    Processing Sun JDK 1.6.0.37.0
    Synchronizing inventory. Please wait...
    Updating Libraries
    Starting Installations
    Synchronizing inventory. Please wait...
    Installation in progress
    Extracting files to 'E:\app\j1013565\product\12.1.0\dbhome_1'.
    Installation in progress
    Copying files for 'Sun JDK 1.6.0.37.0 '
    Copying files for 'oracle.swd.oui.core.min 12.1.0.1.0 '
    Copying files for 'Installer SDK Component 12.1.0.1.0 '
    creating 'Universal Installer' in folder 'Oracle - OraDB12Home1\Oracle Installation Products'
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\oui\oraparam.ini'.
    Copying files for 'Oracle One-Off Patch Installer 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\OPatch\opatch.ini'.
    Copying files for 'Oracle Universal Installer 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\oui\bin\platform\win64\attachHome.bat'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\oui\bin\platform\win64\detachHome.bat'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\oui\bin\platform\win64\runConfig.bat'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\oui\bin\platform\win64\addLangs.bat'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\oui\clusterparam.ini'.
    Copying files for 'Oracle USM Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle Configuration Manager Deconfiguration 10.3.1.0.0 '
    Copying files for 'Oracle RAC Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle DBCA Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle Configuration Manager Client 10.3.2.1.0 '
    Copying files for 'Oracle Configuration Manager 10.3.7.0.3 '
    extracting 'E:\app\j1013565\product\12.1.0\dbhome_1\sysman\install\ccr.zip'
    extracting file 'README.pdf' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\README.pdf'
    extracting file 'OCMJarUtil.class' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\bin\OCMJarUtil.class'
    extracting file 'emocmrsp.bat' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\bin\emocmrsp.bat'
    extracting file 'msvcr71.dll' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\bin\msvcr71.dll'
    extracting file 'ccr.properties' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\config\ccr.properties'
    extracting file 'ccr.properties' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\config\default\ccr.properties'
    extracting file 'jsse_license.html' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\doc\jsse_license.html'
    extracting file 'core.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\inventory\pending\core.jar'
    extracting file 'engines.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\inventory\pending\engines.jar'
    extracting file 'metricdata.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\inventory\pending\metricdata.jar'
    extracting file 'rda.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\inventory\pending\rda.jar'
    extracting file 'rdacewin.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\inventory\pending\rdacewin.jar'
    extracting file 'scripts.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\inventory\pending\scripts.jar'
    extracting file 'OsInfo.class' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\OsInfo.class'
    extracting file 'configCCR.vbs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\configCCR.vbs'
    extracting file 'coreutil.vbs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\coreutil.vbs'
    extracting file 'deployPackages.vbs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\deployPackages.vbs'
    extracting file 'emSnapshotEnv.vbs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\emSnapshotEnv.vbs'
    extracting file 'emocmclnt-14.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\emocmclnt-14.jar'
    extracting file 'emocmclnt.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\emocmclnt.jar'
    extracting file 'emocmcommon.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\emocmcommon.jar'
    extracting file 'emocmutl.vbs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\emocmutl.vbs'
    extracting file 'http_client.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\http_client.jar'
    extracting file 'jcert.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\jcert.jar'
    extracting file 'jnet.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\jnet.jar'
    extracting file 'jsse.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\jsse.jar'
    extracting file 'log4j-core.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\log4j-core.jar'
    extracting file 'osdt_core3.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\osdt_core3.jar'
    extracting file 'osdt_jce.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\osdt_jce.jar'
    extracting file 'regexp.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\regexp.jar'
    extracting file 'xmlparserv2.jar' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\lib\xmlparserv2.jar'
    extracting file 'setupCCR.exe' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\bin\setupCCR.exe'
    extracting file 'ocmJarUtil.bat' from 'E:\app\j1013565\product\12.1.0\dbhome_1\ccr\bin\ocmJarUtil.bat'
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\sysman\install\ccr.zip'
    Copying files for 'Oracle Globalization Support 12.1.0.1.0 '
    updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    Copying files for 'Oracle Bali Share 11.1.1.6.0 '
    Copying files for 'Oracle ODBC Driverfor Instant Client 12.1.0.1.0 '
    copying 'sqresja.dll'
    copying 'sqora32.dll'
    copying 'sqoras32.dll'
    copying 'sqresus.dll'
    Copying files for 'Oracle Globalization Support For Core 12.1.0.1.0 '
    Copying files for 'RDBMS Required Support Files for Instant Client 12.1.0.1.0 '
    moving 'E:\app\j1013565\product\12.1.0\dbhome_1/bin/oci.dll.dbl' to 'E:\app\j1013565\product\12.1.0\dbhome_1/bin/oci.dll'
    moving 'E:\app\j1013565\product\12.1.0\dbhome_1/bin/ociw32.dll.dbl' to 'E:\app\j1013565\product\12.1.0\dbhome_1/bin/ociw32.dll'
    Copying files for 'Oracle JFC Extended Windowing Toolkit 11.1.1.6.0 '
    Copying files for 'Cluster Verification Utility Common Files 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\cv\remenv\exectask.bat'.
    Copying files for 'Expat libraries 2.0.1.0.2 '
    Copying files for 'Perl Modules 5.14.1.0.0 '
    Copying files for 'LDAP Required Support Files 12.1.0.1.0 '
    Copying files for 'Perl Interpreter 5.14.1.0.0 '
    Copying files for 'Oracle R Enterprise Server Files 12.1.0.1.0 '
    Copying files for 'Oracle Real Application Testing 12.1.0.1.0 '
    moving 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\orarat12.dll.dbl' to 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\orarat12.dll'
    Copying files for 'Oracle Label Security 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\rdbms\install\sbs\olsadmintool.bat.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\rdbms\install\sbs\olsoidsync.bat.sbs'.
    Copying files for 'Oracle Locale Builder 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\nls\lbuilder\lbuilder.bat'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\nls\lbuilder\lbuilder.cl'.
    copying 'E:\app\j1013565\product\12.1.0\dbhome_1\nls\lbuilder\lbuilder.bat'
    Copying files for 'SSL Required Support Files for InstantClient 12.1.0.1.0 '
    Copying files for 'Oracle Data Mining RDBMS Files 12.1.0.1.0 '
    moving 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\oradmop12.dll.dbl' to 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\oradmop12.dll'
    Copying files for 'Oracle OLAP RDBMS Files 12.1.0.1.0 '
    moving 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\oraolapop12.dll.dbl' to 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\oraolapop12.dll'
    Copying files for 'Oracle OLAP API 12.1.0.1.0 '
    Copying files for 'Oracle Clusterware RDBMS Files 12.1.0.1.0 '
    Copying files for 'Oracle Database Vault option 12.1.0.1.0 '
    Copying files for 'Oracle Net Required Support Files 12.1.0.1.0 '
    copying 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\orancrypt12_ee.dll.dbl'
    Copying files for 'XDK Required Support Files 12.1.0.1.0 '
    Copying files for 'Platform Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle RAC Required Support Files-HAS 12.1.0.1.0 '
    Copying files for 'Oracle JDBC Server Support Package 12.1.0.1.0 '
    Copying files for 'Oracle SQL Developer 12.1.0.1.0 '
    Copying files for 'Oracle Application Express 12.1.0.1.0 '
    Copying files for 'Oracle Notification Service for Instant Client 12.1.0.1.0 '
    Copying files for 'RDBMS Required Support Files Runtime 12.1.0.1.0 '
    Copying files for 'SQLJ Runtime 12.1.0.1.0 '
    Copying files for 'Database Workspace Manager 12.1.0.1.0 '
    Copying files for 'Precompiler Common Files for Core 12.1.0.1.0 '
    Copying files for 'RDBMS Required Support Files 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\instOracle.key'.
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\instOracle.key'
    copying 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\oravsn12_ee.dll.dbl'
    updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\rdbms\install\sbs\eusm.bat.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\rdbms\install\sbs\umu.bat.sbs'.
    Copying files for 'Parser Generator Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Notification Service (eONS) 12.1.0.1.0 '
    Copying files for 'Oracle Text ATG Language Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Text for Core 12.1.0.1.0 '
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\ctx\admin\dr0ulib.sql.sbs'
    Copying files for 'Precompiler Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Database 12c Multimedia Files 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Java Advanced Imaging 12.1.0.1.0 '
    Copying files for 'Oracle Globalization Support 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Locator Java Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Locator RDBMS Files 12.1.0.1.0 '
    Copying files for 'Oracle Core Required Support Files for Core DB 12.1.0.1.0 '
    Copying files for 'Oracle Core Required Support Files 12.1.0.1.0 '
    Copying files for 'Sample Schema Data 12.1.0.1.0 '
    Copying files for 'Oracle Starter Database 12.1.0.1.0 '
    Copying files for 'Oracle Message Gateway Common Files 12.1.0.1.0 '
    Copying files for 'Oracle XML Query 12.1.0.1.0 '
    Copying files for 'Oracle Core XML Development Kit 12.1.0.1.0 '
    Copying files for 'XML Parser for Oracle JVM 12.1.0.1.0 '
    Copying files for 'Oracle JDBC/OCI Instant Client 12.1.0.1.0 '
    Copying files for 'Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Data Provider for .NET 12.1.0.1.0 '
    copying 'OracleDataProviderTechFilter.xml'
    Copying files for 'Oracle Database Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle Quality of Service Management (Client) 12.1.0.1.0 '
    Copying files for 'Oracle Provider for OLE DB 12.1.0.1.0 '
    updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    Copying files for 'JAccelerator (COMPANION) 12.1.0.1.0 '
    Copying files for 'Oracle Containers for Java 12.1.0.1.0 '
    Copying files for 'Oracle JVM For Core 12.1.0.1.0 '
    Copying files for 'HAS Common Files 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\crs\sbs\srvctl.sbs'.
    Copying files for 'Oracle ODBC Driver 12.1.0.1.0 '
    Copying files for 'Secure Socket Layer 12.1.0.1.0 '
    Copying files for 'Oracle Universal Connection Pool 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Client Option 12.1.0.1.0 '
    Copying files for 'Oracle JDBC/THIN Interfaces 12.1.0.1.0 '
    Copying files for 'Oracle Java Client 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\statusnc.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\ncomp.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\deploync.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\loadjava.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\dropjava.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\ojvmjava.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\javavm\install\sbs\ojvmtc.sbs'.
    Copying files for 'Database Migration Assistant for Unicode 12.1.0.1.0 '
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\dmu\dmu\bin\dmu64.conf'
    copying 'E:\app\j1013565\product\12.1.0\dbhome_1\dmu\dmu\bin\dmu64.conf.dbl'
    Copying files for 'Oracle Administration Assistant for Windows 12.1.0.1.0 '
    Copying files for 'PL/SQL Embedded Gateway 12.1.0.1.0 '
    Copying files for 'OLAP SQL Scripts 12.1.0.1.0 '
    Copying files for 'Database SQL Scripts 12.1.0.1.0 '
    Copying files for 'Precompilers 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\precomp\admin\instpcbcfg.cfg'.
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\precomp\admin\instpcbcfg.cfg'
    Copying files for 'Oracle Extended Windowing Toolkit 11.1.1.6.0 '
    Copying files for 'SQL*Plus Files for Instant Client 12.1.0.1.0 '
    Copying files for 'Precompiler Common Files 12.1.0.1.0 '
    Copying files for 'Oracle Recovery Manager 12.1.0.1.0 '
    Copying files for 'PL/SQL 12.1.0.1.0 '
    Copying files for 'Oracle Providers for ASP.NET 12.1.0.1.0 '
    Copying files for 'Deinstallation Tool 12.1.0.1.0 '
    Copying files for 'Oracle Database Extensions for .NET 12.1.0.1.0 '
    Copying files for 'Oracle Net Java Required Support Files 12.1.0.1.0 '
    Copying files for 'XML Parser for Java 12.1.0.1.0 '
    Copying files for 'Oracle Security Developer Tools 12.1.0.1.0 '
    Copying files for 'Oracle Wallet Manager 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\owm\install\instowm.cl'.
    Copying files for 'Oracle Services For Microsoft Transaction Server 12.1.0.1.0 '
    copying 'omtssamp.sql'
    copying 'dlldata.c'
    copying 'account.cpp'
    copying 'account.def'
    copying 'account.dsp'
    copying 'account.dsw'
    copying 'account.idl'
    copying 'account.rc'
    copying 'accountps.def'
    copying 'accountps.mak'
    copying 'caccount.cpp'
    copying 'caccount.h'
    copying 'caccount.h0'
    copying 'caccount.rgs'
    copying 'dlldatax.h'
    copying 'getreceipt.cpp'
    copying 'getreceipt.h'
    copying 'getreceipt.rgs'
    copying 'movemoney.cpp'
    copying 'movemoney.h'
    copying 'movemoney.rgs'
    copying 'mtssamples.dsn'
    copying 'oramisc.h'
    copying 'resource.h'
    copying 'stdafx.cpp'
    copying 'stdafx.h'
    copying 'tlbcheck.dat'
    copying 'updatere.bin'
    copying 'updatereceipt.cpp'
    copying 'updatereceipt.h'
    copying 'updatereceipt.rgs'
    copying 'uuid.txt'
    copying 'oramts.h'
    copying 'oramtsadmin.sql'
    copying 'utl_oramts.sql'
    copying 'prvtoramts.plb'
    Copying files for 'Oracle Windows Interfaces 12.1.0.1.0 '
    Copying files for 'Oracle Ice Browser 11.1.1.6.0 '
    Copying files for 'Installation Plugin Files 12.1.0.1.0 '
    Copying files for 'Installation Common Files 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\clone\bin\clone.pl.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\install\config\oracle.rdbms.util.xml'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\addnode\addnode.bat'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\addnode\addnode_oraparam.ini.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\clone\clone_oraparam.ini.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\bin\registerDll.bat.sbs'.
    Copying files for 'Oracle LDAP administration 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\ldap\install\ldifmigrator.orc'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\ldap\install\oidprovtool.orc'.
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\ldap\install\ldifmigrator.orc'
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\ldap\install\oidprovtool.orc'
    Copying files for 'Buildtools Common Files 12.1.0.1.0 '
    Copying files for 'Oracle Java Layout Engine 11.0.0.0.0 '
    Copying files for 'Oracle Database User Interface 11.0.0.0.0 '
    Copying files for 'Oracle Help Share Library 11.1.1.6.0 '
    Copying files for 'Oracle Help for Java 11.1.1.6.0 '
    Copying files for 'Assistant Common Files 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\bin\rconfig.sbs'.
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\assistants\bin\rconfig.sbs'
    Copying files for 'Oracle Net 12.1.0.1.0 '
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\network\install\sqlnet.ora.sbs'.
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\network\install\sbs\trcasst.sbs'.
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\network\install\sbs\trcasst.sbs'
    instantiating 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\netmgr.cl.sbs'.
    deleting 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\netmgr.cl.sbs'
    extracting 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help/mgr_help.jar'
    extracting file 'blafdoc.css' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\blafdoc.css'
    extracting file 'eHelp.xml' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\eHelp.xml'
    extracting file 'mgr.brs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.brs'
    extracting file 'mgr.glo' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.glo'
    extracting file 'mgr.hhc' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.hhc'
    extracting file 'mgr.hs' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.hs'
    extracting file 'mgr.idx' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.idx'
    extracting file 'mgr.map' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.map'
    extracting file 'n8ahelpabout_oracle_advanced_security.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpabout_oracle_advanced_security.htm'
    extracting file 'n8ahelpaccepted.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaccepted.htm'
    extracting file 'n8ahelpaddress.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaddress.htm'
    extracting file 'n8ahelpaddress_list_options_dialog_box.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaddress_list_options_dialog_box.htm'
    extracting file 'n8ahelpaddresslist.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaddresslist.htm'
    extracting file 'n8ahelpadvanced_service_options_dialog_.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpadvanced_service_options_dialog_.htm'
    extracting file 'n8ahelpauthentication_method.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpauthentication_method.htm'
    extracting file 'n8ahelpchange_the_oracle_context.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpchange_the_oracle_context.htm'
    extracting file 'n8ahelpchoose_listener_name_dialog_box.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpchoose_listener_name_dialog_box.htm'
    extracting file 'n8ahelpchoose_new_context_dialog_box.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpchoose_new_context_dialog_box.htm'
    extracting file 'n8ahelpclient_load_balancing.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpclient_load_balancing.htm'
    extracting file 'n8ahelpcmanora_file.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcmanora_file.htm'
    extracting file 'n8ahelpcommand_menu.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcommand_menu.htm'
    extracting file 'n8ahelpconfigure_a_connect_desc00000028.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_desc00000028.htm'
    extracting file 'n8ahelpconfigure_a_connect_desc00000029.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_desc00000029.htm'
    extracting file 'n8ahelpconfigure_a_connect_descheterog.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_descheterog.htm'
    extracting file 'n8ahelpconfigure_a_connect_descrdb.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_descrdb.htm'
    extracting file 'n8ahelpconfigure_advanced_connect_data_.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_advanced_connect_data_.htm'
    extracting file 'n8ahelpconfigure_advanced_profile_infor.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_advanced_profile_infor.htm'
    extracting file 'n8ahelpconfigure_default_domains_for_cl.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_default_domains_for_cl.htm'
    extracting file 'n8ahelpconfigure_encryption.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_encryption.htm'
    extracting file 'n8ahelpconfigure_external_naming_method.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_external_naming_method.htm'
    extracting file 'n8ahelpconfigure_external_procedures_fo.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_external_procedures_fo.htm'
    extracting file 'n8ahelpconfigure_heterogeneous_services.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_heterogeneous_services.htm'
    extracting file 'n8ahelpconfigure_integrity.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_integrity.htm'
    extracting file 'n8ahelpconfigure_listener_addresses.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_listener_addresses.htm'
    extracting file 'n8ahelpconfigure_listener_logging_and_t.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_listener_logging_and_t.htm'
    extracting file 'n8ahelpconfigure_multiple_address_optio.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_multiple_address_optio.htm'
    extracting file 'n8ahelpconfigure_oracle_advance00000211.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_oracle_advance00000211.htm'
    extracting file 'n8ahelpconfigure_oracle_advance00000212.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_oracle_advance00000212.htm'
    extracting file 'n8ahelpconfigure_password_authe00000051.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_password_authe00000051.htm'
    extracting file 'n8ahelpconfigure_profile_logging_and_tr.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_profile_logging_and_tr.htm'
    extracting file 'n8ahelpconnect_data.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_data.htm'
    extracting file 'n8ahelpconnect_descriptor.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_descriptor.htm'
    extracting file 'n8ahelpconnect_identifier.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_identifier.htm'
    extracting file 'n8ahelpconnect_string.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_string.htm'
    extracting file 'n8ahelpconnectdata.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnectdata.htm'
    extracting file 'n8ahelpconnection_load_balancing.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnection_load_balancing.htm'
    extracting file 'n8ahelpconnecttime_failover.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnecttime_failover.htm'
    extracting file 'n8ahelpcreate_a_listener.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_a_listener.htm'
    extracting file 'n8ahelpcreate_a_net_service_name.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_a_net_service_name.htm'
    extracting file 'n8ahelpcreate_additional_protocol_addre.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_additional_protocol_addre.htm'
    extracting file 'n8ahelpcreate_network_route_information.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_network_route_information.htm'
    extracting file 'n8ahelpcybersafe.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcybersafe.htm'
    extracting file 'n8ahelpdatabase_identification_by_servi.htm' from 'E:\app\j1013565\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8a

    Hi Srini,
    am following the same steps in installation guide, but not sure why am stuck in the same position
    log from UI:
    Verifying whether Central Inventory is locked by any other OUI session...
    Central Inventory is not locked.
    Loading products list. Please wait.
    Loading products. Please wait.
    Analyzing dependencies
    Setting up install types
    Executing pre-requisites
    Loading Oracle Database 12c
    Loading Enterprise Edition Options
    Loading Oracle Partitioning
    Loading Oracle Spatial and Graph
    Loading Oracle OLAP
    Loading Oracle Database 12c
    Loading Oracle Net Services
    Loading Oracle Text
    Loading HAS Files for DB
    Loading Oracle Net Listener
    Loading Oracle Internet Directory Client
    Loading Oracle Advanced Security
    Loading Oracle JVM
    Loading Database Configuration and Upgrade Assistants
    Loading Oracle Remote Configuration Agent
    Loading Oracle XML Development Kit
    Loading Oracle Multimedia
    Loading Oracle Multimedia Locator
    Loading SQL*Plus
    Loading Oracle Netca Client
    Loading Oracle Call Interface (OCI)
    Loading Oracle Programmer
    Loading Oracle Database Gateway for ODBC
    Loading Generic Connectivity Common Files
    Loading Oracle Database Utilities
    Loading Oracle Notification Service
    Loading Oracle Net
    Loading Assistant Common Files
    Loading Oracle Help for Java
    Loading Oracle Help Share Library
    Loading Oracle Database User Interface
    Loading Oracle Java Layout Engine
    Loading Buildtools Common Files
    Loading Oracle LDAP administration
    Loading Installation Common Files
    Loading Installation Plugin Files
    Loading Oracle Ice Browser
    Loading Oracle Windows Interfaces
    Loading Oracle Services For Microsoft Transaction Server
    Loading Oracle Wallet Manager
    Loading Oracle Security Developer Tools
    Loading XML Parser for Java
    Loading Oracle Net Java Required Support Files
    Loading Oracle Database Extensions for .NET
    Loading Deinstallation Tool
    Loading Oracle Providers for ASP.NET
    Loading PL/SQL
    Loading Oracle Recovery Manager
    Loading Precompiler Common Files
    Loading SQL*Plus Files for Instant Client
    Loading Oracle Extended Windowing Toolkit
    Loading Precompilers
    Loading Database SQL Scripts
    Loading OLAP SQL Scripts
    Loading PL/SQL Embedded Gateway
    Loading Oracle Administration Assistant for Windows
    Loading Database Migration Assistant for Unicode
    Loading Oracle Java Client
    Loading Oracle JDBC/THIN Interfaces
    Loading Oracle Multimedia Client Option
    Loading Oracle Universal Connection Pool
    Loading Secure Socket Layer
    Loading Oracle ODBC Driver
    Loading HAS Common Files
    Loading Oracle JVM For Core
    Loading Oracle Containers for Java
    Loading JAccelerator (COMPANION)
    Loading Oracle Provider for OLE DB
    Loading Oracle Quality of Service Management (Client)
    Loading Oracle Database Deconfiguration
    Loading Oracle Data Provider for .NET
    Loading Required Support Files
    Loading Oracle JDBC/OCI Instant Client
    Loading XML Parser for Oracle JVM
    Loading Oracle Core XML Development Kit
    Loading Oracle XML Query
    Loading Oracle Message Gateway Common Files
    Loading Oracle Starter Database
    Loading Sample Schema Data
    Loading Oracle Core Required Support Files
    Loading Oracle Core Required Support Files for Core DB
    Loading Oracle Multimedia Locator RDBMS Files
    Loading Oracle Multimedia Locator Java Required Support Files
    Loading Oracle Globalization Support
    Loading Oracle Multimedia Java Advanced Imaging
    Loading Oracle Database 12c Multimedia Files
    Loading Precompiler Required Support Files
    Loading Oracle Text for Core
    Loading Oracle Text ATG Language Support Files
    Loading Oracle Notification Service (eONS)
    Loading Parser Generator Required Support Files
    Loading RDBMS Required Support Files
    Loading Precompiler Common Files for Core
    Loading Database Workspace Manager
    Loading SQLJ Runtime
    Loading RDBMS Required Support Files Runtime
    Loading Oracle Notification Service for Instant Client
    Loading Oracle Application Express
    Loading Oracle SQL Developer
    Loading Oracle JDBC Server Support Package
    Loading Oracle RAC Required Support Files-HAS
    Loading Platform Required Support Files
    Loading XDK Required Support Files
    Loading Oracle Net Required Support Files
    Loading Oracle Database Vault option
    Loading Oracle Clusterware RDBMS Files
    Loading Oracle OLAP API
    Loading Oracle OLAP RDBMS Files
    Loading Oracle Data Mining RDBMS Files
    Loading SSL Required Support Files for InstantClient
    Loading Oracle Locale Builder
    Loading Oracle Label Security
    Loading Oracle Real Application Testing
    Loading Oracle R Enterprise Server Files
    Loading Perl Interpreter
    Loading LDAP Required Support Files
    Loading Perl Modules
    Loading Expat libraries
    Loading Cluster Verification Utility Common Files
    Loading Oracle JFC Extended Windowing Toolkit
    Loading RDBMS Required Support Files for Instant Client
    Loading Oracle Globalization Support For Core
    Loading Oracle ODBC Driverfor Instant Client
    Loading Oracle Bali Share
    Loading Oracle Globalization Support
    Loading Oracle Configuration Manager
    Loading Oracle Configuration Manager Client
    Loading Oracle DBCA Deconfiguration
    Loading Oracle RAC Deconfiguration
    Loading Oracle Configuration Manager Deconfiguration
    Loading Oracle USM Deconfiguration
    Loading Oracle Universal Installer
    Loading Oracle One-Off Patch Installer
    Loading Installer SDK Component
    Loading oracle.swd.oui.core.min
    Loading Sun JDK
    Loading dialogs for Oracle Database 12c
    Loading dialogs for Enterprise Edition Options
    Loading dialogs for Oracle Partitioning
    Loading dialogs for Oracle Spatial and Graph
    Loading dialogs for Oracle OLAP
    Loading dialogs for Oracle Database 12c
    Loading dialogs for Oracle Net Services
    Loading dialogs for Oracle Text
    Loading dialogs for HAS Files for DB
    Loading dialogs for Oracle Net Listener
    Loading dialogs for Oracle Internet Directory Client
    Loading dialogs for Oracle Advanced Security
    Loading dialogs for Oracle JVM
    Loading dialogs for Database Configuration and Upgrade Assistants
    Loading dialogs for Oracle Remote Configuration Agent
    Loading dialogs for Oracle XML Development Kit
    Loading dialogs for Oracle Multimedia
    Loading dialogs for Oracle Multimedia Locator
    Loading dialogs for SQL*Plus
    Loading dialogs for Oracle Netca Client
    Loading dialogs for Oracle Call Interface (OCI)
    Loading dialogs for Oracle Programmer
    Loading dialogs for Oracle Database Gateway for ODBC
    Loading dialogs for Generic Connectivity Common Files
    Loading dialogs for Oracle Database Utilities
    Loading dialogs for Oracle Notification Service
    Loading dialogs for Oracle Net
    Loading dialogs for Assistant Common Files
    Loading dialogs for Oracle Help for Java
    Loading dialogs for Oracle Help Share Library
    Loading dialogs for Oracle Database User Interface
    Loading dialogs for Oracle Java Layout Engine
    Loading dialogs for Buildtools Common Files
    Loading dialogs for Oracle LDAP administration
    Loading dialogs for Installation Common Files
    Loading dialogs for Installation Plugin Files
    Loading dialogs for Oracle Ice Browser
    Loading dialogs for Oracle Windows Interfaces
    Loading dialogs for Oracle Services For Microsoft Transaction Server
    Loading dialogs for Oracle Wallet Manager
    Loading dialogs for Oracle Security Developer Tools
    Loading dialogs for XML Parser for Java
    Loading dialogs for Oracle Net Java Required Support Files
    Loading dialogs for Oracle Database Extensions for .NET
    Loading dialogs for Deinstallation Tool
    Loading dialogs for Oracle Providers for ASP.NET
    Loading dialogs for PL/SQL
    Loading dialogs for Oracle Recovery Manager
    Loading dialogs for Precompiler Common Files
    Loading dialogs for SQL*Plus Files for Instant Client
    Loading dialogs for Oracle Extended Windowing Toolkit
    Loading dialogs for Precompilers
    Loading dialogs for Database SQL Scripts
    Loading dialogs for OLAP SQL Scripts
    Loading dialogs for PL/SQL Embedded Gateway
    Loading dialogs for Oracle Administration Assistant for Windows
    Loading dialogs for Database Migration Assistant for Unicode
    Loading dialogs for Oracle Java Client
    Loading dialogs for Oracle JDBC/THIN Interfaces
    Loading dialogs for Oracle Multimedia Client Option
    Loading dialogs for Oracle Universal Connection Pool
    Loading dialogs for Secure Socket Layer
    Loading dialogs for Oracle ODBC Driver
    Loading dialogs for HAS Common Files
    Loading dialogs for Oracle JVM For Core
    Loading dialogs for Oracle Containers for Java
    Loading dialogs for JAccelerator (COMPANION)
    Loading dialogs for Oracle Provider for OLE DB
    Loading dialogs for Oracle Quality of Service Management (Client)
    Loading dialogs for Oracle Database Deconfiguration
    Loading dialogs for Oracle Data Provider for .NET
    Loading dialogs for Required Support Files
    Loading dialogs for Oracle JDBC/OCI Instant Client
    Loading dialogs for XML Parser for Oracle JVM
    Loading dialogs for Oracle Core XML Development Kit
    Loading dialogs for Oracle XML Query
    Loading dialogs for Oracle Message Gateway Common Files
    Loading dialogs for Oracle Starter Database
    Loading dialogs for Sample Schema Data
    Loading dialogs for Oracle Core Required Support Files
    Loading dialogs for Oracle Core Required Support Files for Core DB
    Loading dialogs for Oracle Multimedia Locator RDBMS Files
    Loading dialogs for Oracle Multimedia Locator Java Required Support Files
    Loading dialogs for Oracle Globalization Support
    Loading dialogs for Oracle Multimedia Java Advanced Imaging
    Loading dialogs for Oracle Database 12c Multimedia Files
    Loading dialogs for Precompiler Required Support Files
    Loading dialogs for Oracle Text for Core
    Loading dialogs for Oracle Text ATG Language Support Files
    Loading dialogs for Oracle Notification Service (eONS)
    Loading dialogs for Parser Generator Required Support Files
    Loading dialogs for RDBMS Required Support Files
    Loading dialogs for Precompiler Common Files for Core
    Loading dialogs for Database Workspace Manager
    Loading dialogs for SQLJ Runtime
    Loading dialogs for RDBMS Required Support Files Runtime
    Loading dialogs for Oracle Notification Service for Instant Client
    Loading dialogs for Oracle Application Express
    Loading dialogs for Oracle SQL Developer
    Loading dialogs for Oracle JDBC Server Support Package
    Loading dialogs for Oracle RAC Required Support Files-HAS
    Loading dialogs for Platform Required Support Files
    Loading dialogs for XDK Required Support Files
    Loading dialogs for Oracle Net Required Support Files
    Loading dialogs for Oracle Database Vault option
    Loading dialogs for Oracle Clusterware RDBMS Files
    Loading dialogs for Oracle OLAP API
    Loading dialogs for Oracle OLAP RDBMS Files
    Loading dialogs for Oracle Data Mining RDBMS Files
    Loading dialogs for SSL Required Support Files for InstantClient
    Loading dialogs for Oracle Locale Builder
    Loading dialogs for Oracle Label Security
    Loading dialogs for Oracle Real Application Testing
    Loading dialogs for Oracle R Enterprise Server Files
    Loading dialogs for Perl Interpreter
    Loading dialogs for LDAP Required Support Files
    Loading dialogs for Perl Modules
    Loading dialogs for Expat libraries
    Loading dialogs for Cluster Verification Utility Common Files
    Loading dialogs for Oracle JFC Extended Windowing Toolkit
    Loading dialogs for RDBMS Required Support Files for Instant Client
    Loading dialogs for Oracle Globalization Support For Core
    Loading dialogs for Oracle ODBC Driverfor Instant Client
    Loading dialogs for Oracle Bali Share
    Loading dialogs for Oracle Globalization Support
    Loading dialogs for Oracle Configuration Manager
    Loading dialogs for Oracle Configuration Manager Client
    Loading dialogs for Oracle DBCA Deconfiguration
    Loading dialogs for Oracle RAC Deconfiguration
    Loading dialogs for Oracle Configuration Manager Deconfiguration
    Loading dialogs for Oracle USM Deconfiguration
    Loading dialogs for Oracle Universal Installer
    Loading dialogs for Oracle One-Off Patch Installer
    Loading dialogs for Installer SDK Component
    Loading dialogs for oracle.swd.oui.core.min
    Loading dialogs for Sun JDK
    Processing Oracle Database 12c 12.1.0.1.0
    Processing Enterprise Edition Options 12.1.0.1.0
    Processing Oracle Partitioning 12.1.0.1.0
    Processing Oracle Spatial and Graph 12.1.0.1.0
    Processing Oracle OLAP 12.1.0.1.0
    Processing Oracle Database 12c 12.1.0.1.0
    Processing Oracle Net Services 12.1.0.1.0
    Processing Oracle Text 12.1.0.1.0
    Processing HAS Files for DB 12.1.0.1.0
    Processing Oracle Net Listener 12.1.0.1.0
    Processing Oracle Internet Directory Client 12.1.0.1.0
    Processing Oracle Advanced Security 12.1.0.1.0
    Processing Oracle JVM 12.1.0.1.0
    Processing Database Configuration and Upgrade Assistants 12.1.0.1.0
    Processing Oracle Remote Configuration Agent 12.1.0.1.0
    Processing Oracle XML Development Kit 12.1.0.1.0
    Processing Oracle Multimedia 12.1.0.1.0
    Processing Oracle Multimedia Locator 12.1.0.1.0
    Processing SQL*Plus 12.1.0.1.0
    Processing Oracle Netca Client 12.1.0.1.0
    Processing Oracle Call Interface (OCI) 12.1.0.1.0
    Processing Oracle Programmer 12.1.0.1.0
    Processing Oracle Database Gateway for ODBC 12.1.0.1.0
    Processing Generic Connectivity Common Files 12.1.0.1.0
    Processing Oracle Database Utilities 12.1.0.1.0
    Processing Oracle Notification Service 12.1.0.1.0
    Processing Oracle Net 12.1.0.1.0
    Processing Assistant Common Files 12.1.0.1.0
    Processing Oracle Help for Java 11.1.1.6.0
    Processing Oracle Help Share Library 11.1.1.6.0
    Processing Oracle Database User Interface 11.0.0.0.0
    Processing Oracle Java Layout Engine 11.0.0.0.0
    Processing Buildtools Common Files 12.1.0.1.0
    Processing Oracle LDAP administration 12.1.0.1.0
    Processing Installation Common Files 12.1.0.1.0
    Processing Installation Plugin Files 12.1.0.1.0
    Processing Oracle Ice Browser 11.1.1.6.0
    Processing Oracle Windows Interfaces 12.1.0.1.0
    Processing Oracle Services For Microsoft Transaction Server 12.1.0.1.0
    Processing Oracle Wallet Manager 12.1.0.1.0
    Processing Oracle Security Developer Tools 12.1.0.1.0
    Processing XML Parser for Java 12.1.0.1.0
    Processing Oracle Net Java Required Support Files 12.1.0.1.0
    Processing Oracle Database Extensions for .NET 12.1.0.1.0
    Processing Deinstallation Tool 12.1.0.1.0
    Processing Oracle Providers for ASP.NET 12.1.0.1.0
    Processing PL/SQL 12.1.0.1.0
    Processing Oracle Recovery Manager 12.1.0.1.0
    Processing Precompiler Common Files 12.1.0.1.0
    Processing SQL*Plus Files for Instant Client 12.1.0.1.0
    Processing Oracle Extended Windowing Toolkit 11.1.1.6.0
    Processing Precompilers 12.1.0.1.0
    Processing Database SQL Scripts 12.1.0.1.0
    Processing OLAP SQL Scripts 12.1.0.1.0
    Processing PL/SQL Embedded Gateway 12.1.0.1.0
    Processing Oracle Administration Assistant for Windows 12.1.0.1.0
    Processing Database Migration Assistant for Unicode 12.1.0.1.0
    Processing Oracle Java Client 12.1.0.1.0
    Processing Oracle JDBC/THIN Interfaces 12.1.0.1.0
    Processing Oracle Multimedia Client Option 12.1.0.1.0
    Processing Oracle Universal Connection Pool 12.1.0.1.0
    Processing Secure Socket Layer 12.1.0.1.0
    Processing Oracle ODBC Driver 12.1.0.1.0
    Processing HAS Common Files 12.1.0.1.0
    Processing Oracle JVM For Core 12.1.0.1.0
    Processing Oracle Containers for Java 12.1.0.1.0
    Processing JAccelerator (COMPANION) 12.1.0.1.0
    Processing Oracle Provider for OLE DB 12.1.0.1.0
    Processing Oracle Quality of Service Management (Client) 12.1.0.1.0
    Processing Oracle Database Deconfiguration 12.1.0.1.0
    Processing Oracle Data Provider for .NET 12.1.0.1.0
    Processing Required Support Files 12.1.0.1.0
    Processing Oracle JDBC/OCI Instant Client 12.1.0.1.0
    Processing XML Parser for Oracle JVM 12.1.0.1.0
    Processing Oracle Core XML Development Kit 12.1.0.1.0
    Processing Oracle XML Query 12.1.0.1.0
    Processing Oracle Message Gateway Common Files 12.1.0.1.0
    Processing Oracle Starter Database 12.1.0.1.0
    Processing Sample Schema Data 12.1.0.1.0
    Processing Oracle Core Required Support Files 12.1.0.1.0
    Processing Oracle Core Required Support Files for Core DB 12.1.0.1.0
    Processing Oracle Multimedia Locator RDBMS Files 12.1.0.1.0
    Processing Oracle Multimedia Locator Java Required Support Files 12.1.0.1.0
    Processing Oracle Globalization Support 12.1.0.1.0
    Processing Oracle Multimedia Java Advanced Imaging 12.1.0.1.0
    Processing Oracle Database 12c Multimedia Files 12.1.0.1.0
    Processing Precompiler Required Support Files 12.1.0.1.0
    Processing Oracle Text for Core 12.1.0.1.0
    Processing Oracle Text ATG Language Support Files 12.1.0.1.0
    Processing Oracle Notification Service (eONS) 12.1.0.1.0
    Processing Parser Generator Required Support Files 12.1.0.1.0
    Processing RDBMS Required Support Files 12.1.0.1.0
    Processing Precompiler Common Files for Core 12.1.0.1.0
    Processing Database Workspace Manager 12.1.0.1.0
    Processing SQLJ Runtime 12.1.0.1.0
    Processing RDBMS Required Support Files Runtime 12.1.0.1.0
    Processing Oracle Notification Service for Instant Client 12.1.0.1.0
    Processing Oracle Application Express 12.1.0.1.0
    Processing Oracle SQL Developer 12.1.0.1.0
    Processing Oracle JDBC Server Support Package 12.1.0.1.0
    Processing Oracle RAC Required Support Files-HAS 12.1.0.1.0
    Processing Platform Required Support Files 12.1.0.1.0
    Processing XDK Required Support Files 12.1.0.1.0
    Processing Oracle Net Required Support Files 12.1.0.1.0
    Processing Oracle Database Vault option 12.1.0.1.0
    Processing Oracle Clusterware RDBMS Files 12.1.0.1.0
    Processing Oracle OLAP API 12.1.0.1.0
    Processing Oracle OLAP RDBMS Files 12.1.0.1.0
    Processing Oracle Data Mining RDBMS Files 12.1.0.1.0
    Processing SSL Required Support Files for InstantClient 12.1.0.1.0
    Processing Oracle Locale Builder 12.1.0.1.0
    Processing Oracle Label Security 12.1.0.1.0
    Processing Oracle Real Application Testing 12.1.0.1.0
    Processing Oracle R Enterprise Server Files 12.1.0.1.0
    Processing Perl Interpreter 5.14.1.0.0
    Processing LDAP Required Support Files 12.1.0.1.0
    Processing Perl Modules 5.14.1.0.0
    Processing Expat libraries 2.0.1.0.2
    Processing Cluster Verification Utility Common Files 12.1.0.1.0
    Processing Oracle JFC Extended Windowing Toolkit 11.1.1.6.0
    Processing RDBMS Required Support Files for Instant Client 12.1.0.1.0
    Processing Oracle Globalization Support For Core 12.1.0.1.0
    Processing Oracle ODBC Driverfor Instant Client 12.1.0.1.0
    Processing Oracle Bali Share 11.1.1.6.0
    Processing Oracle Globalization Support 12.1.0.1.0
    Processing Oracle Configuration Manager 10.3.7.0.3
    Processing Oracle Configuration Manager Client 10.3.2.1.0
    Processing Oracle DBCA Deconfiguration 12.1.0.1.0
    Processing Oracle RAC Deconfiguration 12.1.0.1.0
    Processing Oracle Configuration Manager Deconfiguration 10.3.1.0.0
    Processing Oracle USM Deconfiguration 12.1.0.1.0
    Processing Oracle Universal Installer 12.1.0.1.0
    Processing Oracle One-Off Patch Installer 12.1.0.1.0
    Processing Installer SDK Component 12.1.0.1.0
    Processing oracle.swd.oui.core.min 12.1.0.1.0
    Processing Sun JDK 1.6.0.37.0
    Synchronizing inventory. Please wait...
    Updating Libraries
    Starting Installations
    Synchronizing inventory. Please wait...
    Installation in progress
    Extracting files to 'E:\12c\product\12.1.0\dbhome_1'.
    Installation in progress
    Copying files for 'Sun JDK 1.6.0.37.0 '
    Copying files for 'oracle.swd.oui.core.min 12.1.0.1.0 '
    Copying files for 'Installer SDK Component 12.1.0.1.0 '
    creating 'Universal Installer' in folder 'Oracle - OraDB12Home1\Oracle Installation Products'
    instantiating 'E:\12c\product\12.1.0\dbhome_1\oui\oraparam.ini'.
    Copying files for 'Oracle One-Off Patch Installer 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\OPatch\opatch.ini'.
    Copying files for 'Oracle Universal Installer 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\oui\bin\platform\win64\attachHome.bat'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\oui\bin\platform\win64\detachHome.bat'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\oui\bin\platform\win64\runConfig.bat'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\oui\bin\platform\win64\addLangs.bat'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\oui\clusterparam.ini'.
    Copying files for 'Oracle USM Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle Configuration Manager Deconfiguration 10.3.1.0.0 '
    Copying files for 'Oracle RAC Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle DBCA Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle Configuration Manager Client 10.3.2.1.0 '
    Copying files for 'Oracle Configuration Manager 10.3.7.0.3 '
    extracting 'E:\12c\product\12.1.0\dbhome_1\sysman\install\ccr.zip'
    extracting file 'README.pdf' from 'E:\12c\product\12.1.0\dbhome_1\ccr\README.pdf'
    extracting file 'OCMJarUtil.class' from 'E:\12c\product\12.1.0\dbhome_1\ccr\bin\OCMJarUtil.class'
    extracting file 'emocmrsp.bat' from 'E:\12c\product\12.1.0\dbhome_1\ccr\bin\emocmrsp.bat'
    extracting file 'msvcr71.dll' from 'E:\12c\product\12.1.0\dbhome_1\ccr\bin\msvcr71.dll'
    extracting file 'ccr.properties' from 'E:\12c\product\12.1.0\dbhome_1\ccr\config\ccr.properties'
    extracting file 'ccr.properties' from 'E:\12c\product\12.1.0\dbhome_1\ccr\config\default\ccr.properties'
    extracting file 'jsse_license.html' from 'E:\12c\product\12.1.0\dbhome_1\ccr\doc\jsse_license.html'
    extracting file 'core.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\inventory\pending\core.jar'
    extracting file 'engines.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\inventory\pending\engines.jar'
    extracting file 'metricdata.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\inventory\pending\metricdata.jar'
    extracting file 'rda.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\inventory\pending\rda.jar'
    extracting file 'rdacewin.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\inventory\pending\rdacewin.jar'
    extracting file 'scripts.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\inventory\pending\scripts.jar'
    extracting file 'OsInfo.class' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\OsInfo.class'
    extracting file 'configCCR.vbs' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\configCCR.vbs'
    extracting file 'coreutil.vbs' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\coreutil.vbs'
    extracting file 'deployPackages.vbs' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\deployPackages.vbs'
    extracting file 'emSnapshotEnv.vbs' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\emSnapshotEnv.vbs'
    extracting file 'emocmclnt-14.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\emocmclnt-14.jar'
    extracting file 'emocmclnt.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\emocmclnt.jar'
    extracting file 'emocmcommon.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\emocmcommon.jar'
    extracting file 'emocmutl.vbs' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\emocmutl.vbs'
    extracting file 'http_client.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\http_client.jar'
    extracting file 'jcert.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\jcert.jar'
    extracting file 'jnet.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\jnet.jar'
    extracting file 'jsse.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\jsse.jar'
    extracting file 'log4j-core.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\log4j-core.jar'
    extracting file 'osdt_core3.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\osdt_core3.jar'
    extracting file 'osdt_jce.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\osdt_jce.jar'
    extracting file 'regexp.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\regexp.jar'
    extracting file 'xmlparserv2.jar' from 'E:\12c\product\12.1.0\dbhome_1\ccr\lib\xmlparserv2.jar'
    extracting file 'setupCCR.exe' from 'E:\12c\product\12.1.0\dbhome_1\ccr\bin\setupCCR.exe'
    extracting file 'ocmJarUtil.bat' from 'E:\12c\product\12.1.0\dbhome_1\ccr\bin\ocmJarUtil.bat'
    deleting 'E:\12c\product\12.1.0\dbhome_1\sysman\install\ccr.zip'
    Copying files for 'Oracle Globalization Support 12.1.0.1.0 '
    Copying files for 'Oracle Bali Share 11.1.1.6.0 '
    Copying files for 'Oracle ODBC Driverfor Instant Client 12.1.0.1.0 '
    copying 'sqresja.dll'
    copying 'sqora32.dll'
    copying 'sqoras32.dll'
    copying 'sqresus.dll'
    Copying files for 'Oracle Globalization Support For Core 12.1.0.1.0 '
    Copying files for 'RDBMS Required Support Files for Instant Client 12.1.0.1.0 '
    moving 'E:\12c\product\12.1.0\dbhome_1/bin/oci.dll.dbl' to 'E:\12c\product\12.1.0\dbhome_1/bin/oci.dll'
    moving 'E:\12c\product\12.1.0\dbhome_1/bin/ociw32.dll.dbl' to 'E:\12c\product\12.1.0\dbhome_1/bin/ociw32.dll'
    Copying files for 'Oracle JFC Extended Windowing Toolkit 11.1.1.6.0 '
    Copying files for 'Cluster Verification Utility Common Files 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\cv\remenv\exectask.bat'.
    Copying files for 'Expat libraries 2.0.1.0.2 '
    Copying files for 'Perl Modules 5.14.1.0.0 '
    Copying files for 'LDAP Required Support Files 12.1.0.1.0 '
    Copying files for 'Perl Interpreter 5.14.1.0.0 '
    Copying files for 'Oracle R Enterprise Server Files 12.1.0.1.0 '
    Copying files for 'Oracle Real Application Testing 12.1.0.1.0 '
    moving 'E:\12c\product\12.1.0\dbhome_1\bin\orarat12.dll.dbl' to 'E:\12c\product\12.1.0\dbhome_1\bin\orarat12.dll'
    Copying files for 'Oracle Label Security 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\rdbms\install\sbs\olsadmintool.bat.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\rdbms\install\sbs\olsoidsync.bat.sbs'.
    Copying files for 'Oracle Locale Builder 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\nls\lbuilder\lbuilder.bat'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\nls\lbuilder\lbuilder.cl'.
    copying 'E:\12c\product\12.1.0\dbhome_1\nls\lbuilder\lbuilder.bat'
    Copying files for 'SSL Required Support Files for InstantClient 12.1.0.1.0 '
    Copying files for 'Oracle Data Mining RDBMS Files 12.1.0.1.0 '
    moving 'E:\12c\product\12.1.0\dbhome_1\bin\oradmop12.dll.dbl' to 'E:\12c\product\12.1.0\dbhome_1\bin\oradmop12.dll'
    Copying files for 'Oracle OLAP RDBMS Files 12.1.0.1.0 '
    moving 'E:\12c\product\12.1.0\dbhome_1\bin\oraolapop12.dll.dbl' to 'E:\12c\product\12.1.0\dbhome_1\bin\oraolapop12.dll'
    Copying files for 'Oracle OLAP API 12.1.0.1.0 '
    Copying files for 'Oracle Clusterware RDBMS Files 12.1.0.1.0 '
    Copying files for 'Oracle Database Vault option 12.1.0.1.0 '
    Copying files for 'Oracle Net Required Support Files 12.1.0.1.0 '
    copying 'E:\12c\product\12.1.0\dbhome_1\bin\orancrypt12_ee.dll.dbl'
    Copying files for 'XDK Required Support Files 12.1.0.1.0 '
    Copying files for 'Platform Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle RAC Required Support Files-HAS 12.1.0.1.0 '
    Copying files for 'Oracle JDBC Server Support Package 12.1.0.1.0 '
    Copying files for 'Oracle SQL Developer 12.1.0.1.0 '
    Copying files for 'Oracle Application Express 12.1.0.1.0 '
    Copying files for 'Oracle Notification Service for Instant Client 12.1.0.1.0 '
    Copying files for 'RDBMS Required Support Files Runtime 12.1.0.1.0 '
    Copying files for 'SQLJ Runtime 12.1.0.1.0 '
    Copying files for 'Database Workspace Manager 12.1.0.1.0 '
    Copying files for 'Precompiler Common Files for Core 12.1.0.1.0 '
    Copying files for 'RDBMS Required Support Files 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\bin\instOracle.key'.
    deleting 'E:\12c\product\12.1.0\dbhome_1\bin\instOracle.key'
    copying 'E:\12c\product\12.1.0\dbhome_1\bin\oravsn12_pe.dll.dbl'
    updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    instantiating 'E:\12c\product\12.1.0\dbhome_1\rdbms\install\sbs\eusm.bat.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\rdbms\install\sbs\umu.bat.sbs'.
    Copying files for 'Parser Generator Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Notification Service (eONS) 12.1.0.1.0 '
    Copying files for 'Oracle Text ATG Language Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Text for Core 12.1.0.1.0 '
    deleting 'E:\12c\product\12.1.0\dbhome_1\ctx\admin\dr0ulib.sql.sbs'
    Copying files for 'Precompiler Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Database 12c Multimedia Files 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Java Advanced Imaging 12.1.0.1.0 '
    Copying files for 'Oracle Globalization Support 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Locator Java Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Locator RDBMS Files 12.1.0.1.0 '
    Copying files for 'Oracle Core Required Support Files for Core DB 12.1.0.1.0 '
    Copying files for 'Oracle Core Required Support Files 12.1.0.1.0 '
    Copying files for 'Sample Schema Data 12.1.0.1.0 '
    Copying files for 'Oracle Starter Database 12.1.0.1.0 '
    Copying files for 'Oracle Message Gateway Common Files 12.1.0.1.0 '
    Copying files for 'Oracle XML Query 12.1.0.1.0 '
    Copying files for 'Oracle Core XML Development Kit 12.1.0.1.0 '
    Copying files for 'XML Parser for Oracle JVM 12.1.0.1.0 '
    Copying files for 'Oracle JDBC/OCI Instant Client 12.1.0.1.0 '
    Copying files for 'Required Support Files 12.1.0.1.0 '
    Copying files for 'Oracle Data Provider for .NET 12.1.0.1.0 '
    copying 'OracleDataProviderTechFilter.xml'
    Copying files for 'Oracle Database Deconfiguration 12.1.0.1.0 '
    Copying files for 'Oracle Quality of Service Management (Client) 12.1.0.1.0 '
    Copying files for 'Oracle Provider for OLE DB 12.1.0.1.0 '
    updating registry key 'HKEY_LOCAL_MACHINE/SOFTWARE/ORACLE/KEY_OraDB12Home1'
    Copying files for 'JAccelerator (COMPANION) 12.1.0.1.0 '
    Copying files for 'Oracle Containers for Java 12.1.0.1.0 '
    Copying files for 'Oracle JVM For Core 12.1.0.1.0 '
    Copying files for 'HAS Common Files 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\crs\sbs\srvctl.sbs'.
    Copying files for 'Oracle ODBC Driver 12.1.0.1.0 '
    Copying files for 'Secure Socket Layer 12.1.0.1.0 '
    Copying files for 'Oracle Universal Connection Pool 12.1.0.1.0 '
    Copying files for 'Oracle Multimedia Client Option 12.1.0.1.0 '
    Copying files for 'Oracle JDBC/THIN Interfaces 12.1.0.1.0 '
    Copying files for 'Oracle Java Client 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\statusnc.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\ncomp.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\deploync.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\loadjava.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\dropjava.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\ojvmjava.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\javavm\install\sbs\ojvmtc.sbs'.
    Copying files for 'Database Migration Assistant for Unicode 12.1.0.1.0 '
    deleting 'E:\12c\product\12.1.0\dbhome_1\dmu\dmu\bin\dmu64.conf'
    copying 'E:\12c\product\12.1.0\dbhome_1\dmu\dmu\bin\dmu64.conf.dbl'
    Copying files for 'Oracle Administration Assistant for Windows 12.1.0.1.0 '
    Copying files for 'PL/SQL Embedded Gateway 12.1.0.1.0 '
    Copying files for 'OLAP SQL Scripts 12.1.0.1.0 '
    Copying files for 'Database SQL Scripts 12.1.0.1.0 '
    Copying files for 'Precompilers 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\precomp\admin\instpcbcfg.cfg'.
    deleting 'E:\12c\product\12.1.0\dbhome_1\precomp\admin\instpcbcfg.cfg'
    Copying files for 'Oracle Extended Windowing Toolkit 11.1.1.6.0 '
    Copying files for 'SQL*Plus Files for Instant Client 12.1.0.1.0 '
    Copying files for 'Precompiler Common Files 12.1.0.1.0 '
    Copying files for 'Oracle Recovery Manager 12.1.0.1.0 '
    Copying files for 'PL/SQL 12.1.0.1.0 '
    Copying files for 'Oracle Providers for ASP.NET 12.1.0.1.0 '
    Copying files for 'Deinstallation Tool 12.1.0.1.0 '
    Copying files for 'Oracle Database Extensions for .NET 12.1.0.1.0 '
    Copying files for 'Oracle Net Java Required Support Files 12.1.0.1.0 '
    Copying files for 'XML Parser for Java 12.1.0.1.0 '
    Copying files for 'Oracle Security Developer Tools 12.1.0.1.0 '
    Copying files for 'Oracle Wallet Manager 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\owm\install\instowm.cl'.
    Copying files for 'Oracle Services For Microsoft Transaction Server 12.1.0.1.0 '
    copying 'omtssamp.sql'
    copying 'dlldata.c'
    copying 'account.cpp'
    copying 'account.def'
    copying 'account.dsp'
    copying 'account.dsw'
    copying 'account.idl'
    copying 'account.rc'
    copying 'accountps.def'
    copying 'accountps.mak'
    copying 'caccount.cpp'
    copying 'caccount.h'
    copying 'caccount.h0'
    copying 'caccount.rgs'
    copying 'dlldatax.h'
    copying 'getreceipt.cpp'
    copying 'getreceipt.h'
    copying 'getreceipt.rgs'
    copying 'movemoney.cpp'
    copying 'movemoney.h'
    copying 'movemoney.rgs'
    copying 'mtssamples.dsn'
    copying 'oramisc.h'
    copying 'resource.h'
    copying 'stdafx.cpp'
    copying 'stdafx.h'
    copying 'tlbcheck.dat'
    copying 'updatere.bin'
    copying 'updatereceipt.cpp'
    copying 'updatereceipt.h'
    copying 'updatereceipt.rgs'
    copying 'uuid.txt'
    copying 'oramts.h'
    copying 'oramtsadmin.sql'
    copying 'utl_oramts.sql'
    copying 'prvtoramts.plb'
    Copying files for 'Oracle Windows Interfaces 12.1.0.1.0 '
    Copying files for 'Oracle Ice Browser 11.1.1.6.0 '
    Copying files for 'Installation Plugin Files 12.1.0.1.0 '
    Copying files for 'Installation Common Files 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\clone\bin\clone.pl.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\install\config\oracle.rdbms.util.xml'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\addnode\addnode.bat'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\addnode\addnode_oraparam.ini.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\clone\clone_oraparam.ini.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\bin\registerDll.bat.sbs'.
    Copying files for 'Oracle LDAP administration 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\ldap\install\ldifmigrator.orc'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\ldap\install\oidprovtool.orc'.
    deleting 'E:\12c\product\12.1.0\dbhome_1\ldap\install\ldifmigrator.orc'
    deleting 'E:\12c\product\12.1.0\dbhome_1\ldap\install\oidprovtool.orc'
    Copying files for 'Buildtools Common Files 12.1.0.1.0 '
    Copying files for 'Oracle Java Layout Engine 11.0.0.0.0 '
    Copying files for 'Oracle Database User Interface 11.0.0.0.0 '
    Copying files for 'Oracle Help Share Library 11.1.1.6.0 '
    Copying files for 'Oracle Help for Java 11.1.1.6.0 '
    Copying files for 'Assistant Common Files 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\assistants\bin\rconfig.sbs'.
    deleting 'E:\12c\product\12.1.0\dbhome_1\assistants\bin\rconfig.sbs'
    Copying files for 'Oracle Net 12.1.0.1.0 '
    instantiating 'E:\12c\product\12.1.0\dbhome_1\network\install\sqlnet.ora.sbs'.
    instantiating 'E:\12c\product\12.1.0\dbhome_1\network\install\sbs\trcasst.sbs'.
    deleting 'E:\12c\product\12.1.0\dbhome_1\network\install\sbs\trcasst.sbs'
    instantiating 'E:\12c\product\12.1.0\dbhome_1\network\tools\netmgr.cl.sbs'.
    deleting 'E:\12c\product\12.1.0\dbhome_1\network\tools\netmgr.cl.sbs'
    extracting 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help/mgr_help.jar'
    extracting file 'blafdoc.css' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\blafdoc.css'
    extracting file 'eHelp.xml' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\eHelp.xml'
    extracting file 'mgr.brs' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.brs'
    extracting file 'mgr.glo' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.glo'
    extracting file 'mgr.hhc' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.hhc'
    extracting file 'mgr.hs' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.hs'
    extracting file 'mgr.idx' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.idx'
    extracting file 'mgr.map' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\mgr.map'
    extracting file 'n8ahelpabout_oracle_advanced_security.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpabout_oracle_advanced_security.htm'
    extracting file 'n8ahelpaccepted.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaccepted.htm'
    extracting file 'n8ahelpaddress.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaddress.htm'
    extracting file 'n8ahelpaddress_list_options_dialog_box.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaddress_list_options_dialog_box.htm'
    extracting file 'n8ahelpaddresslist.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpaddresslist.htm'
    extracting file 'n8ahelpadvanced_service_options_dialog_.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpadvanced_service_options_dialog_.htm'
    extracting file 'n8ahelpauthentication_method.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpauthentication_method.htm'
    extracting file 'n8ahelpchange_the_oracle_context.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpchange_the_oracle_context.htm'
    extracting file 'n8ahelpchoose_listener_name_dialog_box.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpchoose_listener_name_dialog_box.htm'
    extracting file 'n8ahelpchoose_new_context_dialog_box.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpchoose_new_context_dialog_box.htm'
    extracting file 'n8ahelpclient_load_balancing.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpclient_load_balancing.htm'
    extracting file 'n8ahelpcmanora_file.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcmanora_file.htm'
    extracting file 'n8ahelpcommand_menu.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcommand_menu.htm'
    extracting file 'n8ahelpconfigure_a_connect_desc00000028.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_desc00000028.htm'
    extracting file 'n8ahelpconfigure_a_connect_desc00000029.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_desc00000029.htm'
    extracting file 'n8ahelpconfigure_a_connect_descheterog.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_descheterog.htm'
    extracting file 'n8ahelpconfigure_a_connect_descrdb.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_a_connect_descrdb.htm'
    extracting file 'n8ahelpconfigure_advanced_connect_data_.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_advanced_connect_data_.htm'
    extracting file 'n8ahelpconfigure_advanced_profile_infor.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_advanced_profile_infor.htm'
    extracting file 'n8ahelpconfigure_default_domains_for_cl.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_default_domains_for_cl.htm'
    extracting file 'n8ahelpconfigure_encryption.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_encryption.htm'
    extracting file 'n8ahelpconfigure_external_naming_method.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_external_naming_method.htm'
    extracting file 'n8ahelpconfigure_external_procedures_fo.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_external_procedures_fo.htm'
    extracting file 'n8ahelpconfigure_heterogeneous_services.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_heterogeneous_services.htm'
    extracting file 'n8ahelpconfigure_integrity.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_integrity.htm'
    extracting file 'n8ahelpconfigure_listener_addresses.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_listener_addresses.htm'
    extracting file 'n8ahelpconfigure_listener_logging_and_t.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_listener_logging_and_t.htm'
    extracting file 'n8ahelpconfigure_multiple_address_optio.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_multiple_address_optio.htm'
    extracting file 'n8ahelpconfigure_oracle_advance00000211.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_oracle_advance00000211.htm'
    extracting file 'n8ahelpconfigure_oracle_advance00000212.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_oracle_advance00000212.htm'
    extracting file 'n8ahelpconfigure_password_authe00000051.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_password_authe00000051.htm'
    extracting file 'n8ahelpconfigure_profile_logging_and_tr.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconfigure_profile_logging_and_tr.htm'
    extracting file 'n8ahelpconnect_data.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_data.htm'
    extracting file 'n8ahelpconnect_descriptor.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_descriptor.htm'
    extracting file 'n8ahelpconnect_identifier.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_identifier.htm'
    extracting file 'n8ahelpconnect_string.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnect_string.htm'
    extracting file 'n8ahelpconnectdata.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnectdata.htm'
    extracting file 'n8ahelpconnection_load_balancing.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnection_load_balancing.htm'
    extracting file 'n8ahelpconnecttime_failover.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpconnecttime_failover.htm'
    extracting file 'n8ahelpcreate_a_listener.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_a_listener.htm'
    extracting file 'n8ahelpcreate_a_net_service_name.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_a_net_service_name.htm'
    extracting file 'n8ahelpcreate_additional_protocol_addre.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_additional_protocol_addre.htm'
    extracting file 'n8ahelpcreate_network_route_information.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcreate_network_route_information.htm'
    extracting file 'n8ahelpcybersafe.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpcybersafe.htm'
    extracting file 'n8ahelpdatabase_identification_by_servi.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdatabase_identification_by_servi.htm'
    extracting file 'n8ahelpdatabase_link.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdatabase_link.htm'
    extracting file 'n8ahelpdatabase_services.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdatabase_services.htm'
    extracting file 'n8ahelpdedicated_server.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdedicated_server.htm'
    extracting file 'n8ahelpdirectory_information_tree_dit.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_information_tree_dit.htm'
    extracting file 'n8ahelpdirectory_naming.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_naming.htm'
    extracting file 'n8ahelpdirectory_naming_configuration_o.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_naming_configuration_o.htm'
    extracting file 'n8ahelpdirectory_naming_context.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_naming_context.htm'
    extracting file 'n8ahelpdirectory_naming_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_naming_overview.htm'
    extracting file 'n8ahelpdirectory_naming_requirements_fo.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_naming_requirements_fo.htm'
    extracting file 'n8ahelpdirectory_server.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_server.htm'
    extracting file 'n8ahelpdirectory_server_authentication_.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdirectory_server_authentication_.htm'
    extracting file 'n8ahelpdiscovery.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdiscovery.htm'
    extracting file 'n8ahelpdistinguished_name_dn.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdistinguished_name_dn.htm'
    extracting file 'n8ahelpdomain.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdomain.htm'
    extracting file 'n8ahelpdomain_name_system_dns.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpdomain_name_system_dns.htm'
    extracting file 'n8ahelpedit_menu.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpedit_menu.htm'
    extracting file 'n8ahelpencryption.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpencryption.htm'
    extracting file 'n8ahelpexport_oracle_names_entries_to_d.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpexport_oracle_names_entries_to_d.htm'
    extracting file 'n8ahelpexport_tnsnamesora_file_entries_.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpexport_tnsnamesora_file_entries_.htm'
    extracting file 'n8ahelpexternal_naming.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpexternal_naming.htm'
    extracting file 'n8ahelpexternal_procedures.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpexternal_procedures.htm'
    extracting file 'n8ahelpfile_menu.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpfile_menu.htm'
    extracting file 'n8ahelpgeneral_access_rights.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_access_rights.htm'
    extracting file 'n8ahelpgeneral_advanced.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_advanced.htm'
    extracting file 'n8ahelpgeneral_logging.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_logging.htm'
    extracting file 'n8ahelpgeneral_parameters_authenticatio.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_parameters_authenticatio.htm'
    extracting file 'n8ahelpgeneral_parameters_general.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_parameters_general.htm'
    extracting file 'n8ahelpgeneral_parameters_logging__trac.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_parameters_logging__trac.htm'
    extracting file 'n8ahelpgeneral_routing.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_routing.htm'
    extracting file 'n8ahelpgeneral_tracing.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpgeneral_tracing.htm'
    extracting file 'n8ahelpglobal_database_name.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpglobal_database_name.htm'
    extracting file 'n8ahelphelp_menu.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelphelp_menu.htm'
    extracting file 'n8ahelpheterogeneous_services.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpheterogeneous_services.htm'
    extracting file 'n8ahelphost_naming.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelphost_naming.htm'
    extracting file 'n8ahelpinitialization_parameter_file.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpinitialization_parameter_file.htm'
    extracting file 'n8ahelpinstance.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpinstance.htm'
    extracting file 'n8ahelpinstance_name.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpinstance_name.htm'
    extracting file 'n8ahelpintegrity.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpintegrity.htm'
    extracting file 'n8ahelpip_address.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpip_address.htm'
    extracting file 'n8ahelpkerberosv5.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpkerberosv5.htm'
    extracting file 'n8ahelpldapora_file.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpldapora_file.htm'
    extracting file 'n8ahelplightweight_directory_access_pro.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplightweight_directory_access_pro.htm'
    extracting file 'n8ahelplink_qualifier.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplink_qualifier.htm'
    extracting file 'n8ahelplistener.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplistener.htm'
    extracting file 'n8ahelplistener_configuration_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplistener_configuration_overview.htm'
    extracting file 'n8ahelplistener_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplistener_overview.htm'
    extracting file 'n8ahelplistenerora_file.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplistenerora_file.htm'
    extracting file 'n8ahelplistening_locations.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplistening_locations.htm'
    extracting file 'n8ahelplocal_naming00000018.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplocal_naming00000018.htm'
    extracting file 'n8ahelplocal_naming00000153.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplocal_naming00000153.htm'
    extracting file 'n8ahelplocal_naming_configuration_overv.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplocal_naming_configuration_overv.htm'
    extracting file 'n8ahelplogging.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplogging.htm'
    extracting file 'n8ahelplsnrctl_utility.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelplsnrctl_utility.htm'
    extracting file 'n8ahelpmicrosoft_active_directory.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpmicrosoft_active_directory.htm'
    extracting file 'n8ahelpnaming_external.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnaming_external.htm'
    extracting file 'n8ahelpnaming_method.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnaming_method.htm'
    extracting file 'n8ahelpnaming_methods.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnaming_methods.htm'
    extracting file 'n8ahelpnet8_assistant_key_features.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_assistant_key_features.htm'
    extracting file 'n8ahelpnet8_configuration_assistant.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_configuration_assistant.htm'
    extracting file 'n8ahelpnet8_configuration_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_configuration_overview.htm'
    extracting file 'n8ahelpnet8_connectivity_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_connectivity_overview.htm'
    extracting file 'n8ahelpnet8_entries_in_a_directory.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_entries_in_a_directory.htm'
    extracting file 'n8ahelpnet8_entries_in_a_directory_dit.gif' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_entries_in_a_directory_dit.gif'
    extracting file 'n8ahelpnet8_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet8_overview.htm'
    extracting file 'n8ahelpnet_service_name.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnet_service_name.htm'
    extracting file 'n8ahelpnetwork_information_service_nis.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnetwork_information_service_nis.htm'
    extracting file 'n8ahelpnts.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpnts.htm'
    extracting file 'n8ahelporacle_advanced_security.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_advanced_security.htm'
    extracting file 'n8ahelporacle_advanced_security_authent.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_advanced_security_authent.htm'
    extracting file 'n8ahelporacle_advanced_security_encrypt.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_advanced_security_encrypt.htm'
    extracting file 'n8ahelporacle_advanced_security_integri.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_advanced_security_integri.htm'
    extracting file 'n8ahelporacle_advanced_security_other_p.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_advanced_security_other_p.htm'
    extracting file 'n8ahelporacle_advanced_security_ssl.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_advanced_security_ssl.htm'
    extracting file 'n8ahelporacle_connection_manager.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_connection_manager.htm'
    extracting file 'n8ahelporacle_context.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_context.htm'
    extracting file 'n8ahelporacle_enterprise_manager.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_enterprise_manager.htm'
    extracting file 'n8ahelporacle_internet_directory.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_internet_directory.htm'
    extracting file 'n8ahelporacle_rdb_database.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_rdb_database.htm'
    extracting file 'n8ahelporacle_system_identifier_sid.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelporacle_system_identifier_sid.htm'
    extracting file 'n8ahelpother_services.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpother_services.htm'
    extracting file 'n8ahelpoverview_of_the_net8_assistant_e.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpoverview_of_the_net8_assistant_e.htm'
    extracting file 'n8ahelppooled_server.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelppooled_server.htm'
    extracting file 'n8ahelpprioritize_naming_methods.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpprioritize_naming_methods.htm'
    extracting file 'n8ahelpprofile.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpprofile.htm'
    extracting file 'n8ahelpprofile_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpprofile_overview.htm'
    extracting file 'n8ahelpprotocol.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpprotocol.htm'
    extracting file 'n8ahelpprotocol_address.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpprotocol_address.htm'
    extracting file 'n8ahelpprotocol_parameters.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpprotocol_parameters.htm'
    extracting file 'n8ahelpradius.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpradius.htm'
    extracting file 'n8ahelprecommended_port_numbers.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelprecommended_port_numbers.htm'
    extracting file 'n8ahelprecord_type.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelprecord_type.htm'
    extracting file 'n8ahelpregion_database.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpregion_database.htm'
    extracting file 'n8ahelprejected.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelprejected.htm'
    extracting file 'n8ahelprelative_distinguished_name_rdn.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelprelative_distinguished_name_rdn.htm'
    extracting file 'n8ahelprequested.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelprequested.htm'
    extracting file 'n8ahelprequired.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelprequired.htm'
    extracting file 'n8ahelproute_connection_requests.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelproute_connection_requests.htm'
    extracting file 'n8ahelpschema.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpschema.htm'
    extracting file 'n8ahelpservice_handler.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpservice_handler.htm'
    extracting file 'n8ahelpservice_identification.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpservice_identification.htm'
    extracting file 'n8ahelpservice_name.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpservice_name.htm'
    extracting file 'n8ahelpservice_registration.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpservice_registration.htm'
    extracting file 'n8ahelpsession_data_unit_sdu.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpsession_data_unit_sdu.htm'
    extracting file 'n8ahelpset_authentication_credentials.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpset_authentication_credentials.htm'
    extracting file 'n8ahelpshared_server.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpshared_server.htm'
    extracting file 'n8ahelpsingle_signon.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpsingle_signon.htm'
    extracting file 'n8ahelpsource_routing.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpsource_routing.htm'
    extracting file 'n8ahelpsqlnetora_file.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpsqlnetora_file.htm'
    extracting file 'n8ahelpssl_authentication_method.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpssl_authentication_method.htm'
    extracting file 'n8ahelpssl_profile.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpssl_profile.htm'
    extracting file 'n8ahelpstatically_configure_database_se.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelpstatically_configure_database_se.htm'
    extracting file 'n8ahelptask_overview.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelptask_overview.htm'
    extracting file 'n8ahelptest_connectivity.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelptest_connectivity.htm'
    extracting file 'n8ahelptimetolive_ttl.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelptimetolive_ttl.htm'
    extracting file 'n8ahelptnsnamesora_file.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelptnsnamesora_file.htm'
    extracting file 'n8ahelptoolbar.htm' from 'E:\12c\product\12.1.0\dbhome_1\network\tools\help\mgr\help\n8ahelptoolbar.ht

  • ITunes 11.2.2 for Windows x64 will not successfully install.  Removed prior iTunes, and still will not install. 10.7 installs just fine, but constantly asks to upgrade to 11.2.2.  Any Thoughts?

    iTunes 11.2.2 for Windows x64 will not successfully install.  Removed prior iTunes, and still will not install. 10.7 installs just fine, but constantly asks to upgrade to 11.2.2.  Any Thoughts?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if one component won't install normally.
    If needs be, the Microsoft Program Install and Uninstall Utility (MS Installer "Fixit") may be able to help force through the installation.
    tt2

  • Installed iTunes 10.2.1 for Windows (64-bit), Error 7 Windows 998

    Hello
    After updating iTunes 10.2.1 for Windows (64-bit)I am getting the dreaded iTunes was not installed correctly, Please reinstall iTunes. With error 7 (Windows error 998) popups.
    Tried already all the known uninstall/install/repair suggestions. Tried runnng as administrator or changing permissions. Tried disabling Bonjour Service.
    Until now nothing has repaired it.
    Is there a way to fix this? Can it be an Adobe update?
    Is there a way to get an older version?

    I had the same problem. I tried doing a system restore to a day or 2 before i did the update. The restore was successful but the itunes problem remained. After that I went into the control panel, selected itunes and clicked the repair tab.
    It now works fine for me. The only other step I took was to copy my itunes folder into another location in case anything went wrong. Once the repair was complete I simply replaced the new empty itunes folder with my previous one.
    Hope this is of some help.

  • I tried to install iTunes 10.6.1 for Windows (64 bit) and it says "A required iTunes component is not installed. Please repair or reinstall iTunes. (-42404). I have tried uninstalling everything and reinstalling and it still does not work.

    I tried to install iTunes 10.6.1 for Windows (64 bit) and it says "A required iTunes component is not installed. Please repair or reinstall iTunes. (-42404). I have tried uninstalling everything and reinstalling and it still does not work. I then restored my computer to a week ago and tried to download and install the update and this came up again.

    Check out this thread:
    https://discussions.apple.com/thread/3677426?start=0&tstart=0

  • Entry point not found - iTunes 10.7 for Windows (64-bit) reinstall

    After ignoring iTunes update prompts for about 2 years, I recently tried updating to the latest version (12.1) without success.  After searching for solutions to this problem online, I decided to uninstall iTunes and try reverting back to iTunes 10.7 for Windows 64-bit (on my Windows Vista laptop).
    At this point I have installed, repaired, uninstalled, reinstalled, and repaired the 10.7 version and am still unable to access iTunes.  When I try to launch iTunes, I get the following error messages:
    "iTunes.exe - Entry Point Not Found
    The procedure entry point CMTimeRangeMakeFromDictionary could not be located in the dynamic link library CoreMedia.dll."
    When I click OK, I then get:
    "iTunes was not installed correctly.  Please reinstall iTunes.
    Error 7 (Windows error 127)"
    (As I stated above, reinstalling hasn't worked!)
    In my online troubleshooting searches, I've found posts regarding entry point issues but none with "CMTimeRangeMakeFromDictionary" or "CoreMedia.dll" in them.  I'm unsure what to do next (should I attempt iTunes 12.1 again?), and my biggest concern is that I will somehow lose all my music.  Any help would be greatly appreciated!  Thank you

    Entry point errors can often be fixed by deleting the offending dll, then repairing the component it is part of. CoreMedia.dll is part of Apple Application Support.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If the advice above doesn't resolve things you could try this alternate version:
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    which is a 64-bit installer for the 32-bit version of the core application, similar to previous 64-bit releases.
    Or roll back to the previous build:
    iTunes 12.0.1.26 for Windows (32-bit) - iTunesSetup.exe (2014-10-16)
    iTunes 12.0.1.26 for Windows (64-bit) - iTunes64Setup.exe (2014-10-16)
    tt2

  • Itunes 12.0.1 for Windows (64-bit) is Unresponsive

    I just updated to itunes 12.0.1 for Windows (64-bit)  (Running windows 8)
    As soon as I start the front screen is loaded but the program is unresponsive.
    In task manager it says it's a 32bit program (not sure why it is advertised as 64bit!?)...
    I tried the following:
    1-Removed Itunes, Restarted, Reinstalled it but that didn't work
    2-Removed the SyncServices Folder (as suggested in some forums) but that also didn't work
    Any Ideas?

    Hi suntrain,
    Welcome to the Apple Support Communities!
    I understand that iTunes is not responding on launch on your computer running Windows 8. You have already done some great troubleshooting to try and isolate and resolve the situation as well. In this situation I would recommend reading over and working through the troubleshooting steps located in the attached article. 
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues - Apple Support
    Cheers,
    Joe 

  • Java communication api for windows 64 bit

    Hi,
    I need communication api for windows 64 bit. Are these api's in developement?
    Thanks,
    Andrea Todeschini

    If you use version 2.0 of the rxtx library then it provides a complete implementation of the javax.comm package.
    Version 2.1 does not (its in the gnu.io namespace)
    // Try the following url
    http://users.frii.com/jarvi/rxtx/download.html
    matfud

  • ITunes 10.7 for Windows (64-bit)

    I'm using iTunes 6.3.25 for Windows (64-bit). When I checked in Help<Check for Updates, iTunes doesn't show 10.7 update. Even Apple Software Update doesn't show any update. In case, I download version 10.7 from Apple support site, would it affect my music libraries? Would this move repalce 6.3 with 10.7 or 10.7 run along 6.3?

    With that one, I'd try updating using an iTunesSetup.exe (or iTunes64Setup.exe) installer file, downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Under normal circumstances, updating using an installer file like that doesn't touch your content. (That being said, It's still always a good idea to maintain a current backup in case of disasters.)

Maybe you are looking for