Oracle Jinitiator 1 1 8 2 Download 64 Bit

Original Post

Hello IT’s friend !
This issue was not fixed by me, it was fixed original by Mando.
And clearly step by Arty Borulia, Here the link to the post in Arty’s blog:
http://dba-story.blogspot.com/2011/03/j-initiator-11816-on-windows-7-x64-64.html

Oracle Jinitiator 1 1 8 2 Download 64 Bit Free

  • This installer downloads all components, but only installs the ones the user selects from a list of entitled components, based on the license key entered. The license key determines the edition and will enable Toad for Oracle functionality accordingly. This installer supports 64-bit Oracle clients. file has been selected to download.
  • Oracle Jinitiator 1.1.8.2 Download Windows 7 64 BitsOracle Jinitiator 1.1.8.2 Download Windows 7 64 BitsOracle JInitiator version too low please inst.
  • . Oracle JInitiator 1.3.1.22 has been shown (by both internal testing and the absence of any customer reported issues) not to be sensitive to any particular version of Netscape 4.7.x. It is therefore certified for use against all versions from 4.7.x onwards.
  • Therefore you need to install both 32-bit and 64-bit versions of the Oracle client. IBM Support recommends that you perform the following on the Controller 10.2 (or later) application server: 1. Download the latest patchset version of the Oracle 11G release 2 (rel2) 64-bit client. At the time of writing.

Step by Step (Modified)

  1. Download the binary package from dropbox(original).
  2. Extract the JInit 1.1.8.16 for Windows 7 x64.zip
  3. Copy the Oracle folder to C:WindowsProgram Files (Not the “program files (x86)” folder)
    ; If you install not on C: please change to your installed WINDOWS drive
  4. Run → regedit Enter, Expand HKEY_USERS and see the couple of strings that have format as picture
    The USER_ID is S-1-5-21-3197996563-1768115088-3506838410-1000
  5. Or browse to HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList
  6. cd Reg Folder and edit-replace the two registry files that have HKEY_USERS in the title with text editor (easy tool used : notepad)
  7. Open “Oracle JInitiator 1.1.8.16 – Added Registry – HKEY_USERS – After Install.reg” with notepad
    Go to Edit→Replace… (Ctrl+H)
    Find what: S-1-5-21-1085031214-1563985344-1801674531-500 (default value)
    Replace with: S-1-5-21-3197996563-1768115088-3506838410-1000 (step4)
    Choose: Replace All
  8. Repeat the 2nd file “Oracle JInitiator 1.1.8.16 – Modified Registry – HKEY_USERS – After Install.reg” with step 7 again
  9. Run all the registry files after modified as below. You’ll get an error on one of them, but just ignore it.
    It should be on the HKEY_Local_Machine one, just make sure you don’t get an error anywhere else.
    1. Oracle JInitiator 1.1.8.16 – Added Registry – HKEY_CLASSES_ROOT – After Install.reg
    2. Oracle JInitiator 1.1.8.16 – Added Registry – HKEY_CURRENT_USER – After Install.reg
    3. Oracle JInitiator 1.1.8.16 – Added Registry – HKEY_LOCAL_MACHINE – After Install.reg
    4. Oracle JInitiator 1.1.8.16 – Added Registry – HKEY_USERS – After Install.reg
    5. Oracle JInitiator 1.1.8.16 – Modified Registry – HKEY_CURRENT_USER – After Install.reg
    6. Oracle JInitiator 1.1.8.16 – Modified Registry – HKEY_LOCAL_MACHINE – After Install.reg
    7. Oracle JInitiator 1.1.8.16 – Modified Registry – HKEY_USERS – After Install.reg
Download

Oracle Jinitiator 1.1.8.2 Free Download For Windows 7 32 Bit oracle jinitiator windows jinitiator 1.3.1.22 windows 10, oracle jinitiator windows 7 64 bit download, Office 365 for Education is a free plan for students, teachers and schools that.

Download JInit 1.1.8.16 and Batch script

I have written dos batch file to automate the steps above and also using Find And Replace Text command line utility (fart.exe) from sourceforge.net to replace text in the two registry files that have HKEY_USERS in the title.

Batch script Code

[text]
@echo off

REM ####################################
REM # Mkdir
REM ####################################

mkdir “C:Program FilesOracle”

REM ####################################
REM # Copy Oracle Program Files
REM ####################################

xcopy Oracle “C:Program FilesOracle” /A /Y /E /H /I

Oracle Jinitiator 1 1 8 2 Download 64 Bit Windows 7

REM ####################################
REM # Query the value and grep value
REM ####################################

set PROFILE_LIST=”HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList”

REM ####################################
REM # Last tokens is %USER_ID%
REM ####################################

set USER_ID=

for /f “tokens=*” %%a in (‘reg query %PROFILE_LIST% ^| findstr %PROFILE_LIST%’) do (
set USER_ID=%%a
)

set USER_ID=%USER_ID:HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionProfileList=%

REM ####################################
REM # Search and Replace Text by fart.exe
REM ####################################

set USER_ID_OLD=S-1-5-21-1085031214-1563985344-1801674531-500

fart -i “Reg*HKEY_USERS*.reg” %USER_ID_OLD% %USER_ID%

REM ####################################
REM # Add Registry – Reg/*.reg
REM ####################################

regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Added Registry – HKEY_CLASSES_ROOT – After Install.reg”
regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Added Registry – HKEY_CURRENT_USER – After Install.reg”
regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Added Registry – HKEY_LOCAL_MACHINE – After Install.reg”
regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Added Registry – HKEY_USERS – After Install.reg”
regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Modified Registry – HKEY_CURRENT_USER – After Install.reg”
regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Modified Registry – HKEY_LOCAL_MACHINE – After Install.reg”
regedit.exe /s “RegOracle JInitiator 1.1.8.16 – Modified Registry – HKEY_USERS – After Install.reg”

echo “Added Registry – Oracle JInitiator 1.1.8.16 Successful !”

pause

exit
[/text]

JInit 1.1.8.16 for Windows 7 x64 with Batch script.zip

Below is the link of JInit 1.1.8.16 for Windows 7 x64 from original and included the batch script above.
JInit 1.1.8.16 for Windows 7 x64 with Batch script.zip

Recent JInit 1.1.8.16 for Windows 7 x64 Search Terms: