user2296256
user2296256

Reputation: 45

Oracle 12c client on Windows 10 64bit

I am trying to install the Oracle 12c 64bit client on a Windows 10 64bit PC. Whenever I run the setup it just quickly pops up a DOS window then immediately closes it. No error messages, nothing.

I know there are a few command line switches to ignore the prereq checking, but they don't appear to do anything.

Any tips are greatly appreciated...

Upvotes: 1

Views: 22822

Answers (5)

Dimitar Dimitrov
Dimitar Dimitrov

Reputation: 1

Switches for Oracle Client Install procedure

setup.exe -ignoreSysPrereqs

That is to ignore higher version of Windows when install old Oracle Client. On my experience - Oracle 10g client installation on Windows 10

as shown https://docs.oracle.com/cd/E18283_01/em.112/e12255/c_oui_appendix.htm

Upvotes: 0

Christopher Jones
Christopher Jones

Reputation: 10506

The big question is 'what do you want the client for'? Most users can just unzip the Oracle Instant Client package(s) and not need to run an installer. If the tools (not the OS) you use are 64-bit then install the 64-bit Instant Client from here, otherwise if the tools are 32-bit then install the 32-bit Instant Client from here. Generic instructions are at the foot of each page, but check whether your tool etc has its own specific instructions.

The next question is do you really need the old 12c client? Since 19c Oracle Client libraries (including those in Oracle Instant Client) can connect to Oracle Database 11.2 or later, you can probably install the latest-and-greatest Instant Client (or "full" Oracle Client if you really need it).

Upvotes: 2

Mark McCoy
Mark McCoy

Reputation: 13

  1. Make sure you are running the executable from a local drive, not a removeable drive or mapped drive.
  2. Make sure you have the Microsoft Visual C++ 2010 x86 Redistributable installed.

Upvotes: 0

Wernfried Domscheit
Wernfried Domscheit

Reputation: 59456

Check following folders and delete them, if existing:

  • %ProgramFiles%\Oracle\Inventory
  • %TEMP%\deinstall*
  • %TEMP%\OraInstall*
  • %TEMP%\CVU*

Then open a Command Line window as Administrator and start setup.exe from there - perhaps you get more information.

After installation have a look at %TEMP%\OraInstall* there you should find a detailed log file.

Upvotes: 0

EJ Egyed
EJ Egyed

Reputation: 6084

Try opening up a command prompt in the same directory as the Setup.exe file you are attempting to run, then just run the executable from the command line. This should hopefully show what is popping up in the command prompt.

Another option to try is right clicking on the Setup.exe file and selecting Run as Administrator.

Upvotes: 0

Related Questions