I need to remove Oracle 11.2.0.1 Instant Client from a Windows 7 machine. I ran the OUI to remove it, but a popup displayed telling me to run [oracle_home]/deinstall/deinstall. Except that there is no deinstall/deinstall in the oracle_home for the Instant Client (there is for other clients). Apparently Oracle failed to include a deinstall for the Instant Client.
-
Ken - OUI is the Oracle Universal Installer. The Oracle Client cannot be uninstalled using the Windows Control Panel. – Jim Jun 05 '15 at 21:03
-
There is no installer either. Just delete the folder you expanded the original distribution zip(s) into? – Alex Poole Jun 05 '15 at 22:11
-
Have a look at this answer: [How can I completely uninstall oracle 11g?](http://stackoverflow.com/questions/28727721/how-can-i-completely-uninstall-oracle-11g/28728711#28728711) – Wernfried Domscheit Jun 06 '15 at 06:01
-
Simply remove the folder. The only problem might be with ODBC drivers. ODBC driver dll has to be explicitlly registered with Windows system, so uninstall might require un-registration or even system reboot. – ibre5041 Jun 06 '15 at 19:43
6 Answers
You can run setup.exe one more time and install Oracle Administration Assistant for Windows in the same ORACLE_HOME directory, use Custom installation type
).
After install check the folder and you'll see deinstall directory. Run the deinstall.bat as Administrator.

- 27,123
- 14
- 62
- 101

- 51
- 5
The OUI shows a tree structure of the oracle instant client. Check the node of the client , not the root of the tree structure.

- 11
- 1
Just adding my response to this, I kind of did mine by accident, so I found the following worked for:
- Run the setup.exe
- Select the home environment that the instant client is installed into
- You should have 3 levels on the tree, make sure you only select the bottom node, the click remove, it should prompt you to confirm that you are going to remove the instant client and some other stuff.
- Once that finishes do the same with the 2nd level node and once that is gone it removes the top level node/home as well
cheers Michael

- 11
- 3
I just had this issue on linux, I accidentally installed instant client. what you do is run the runinstaller
with -deinstall -home
(full path to oracle home) arguments
Mine looked like this
./runInstaller -deinstall -home /opt/oracle/db/product/12.1.0/client_1
That should remove everything. It is odd because all the documents say just run OUI but the instant client does not come with any deinstallation programs.

- 363
- 1
- 4
- 13
You can use the Oracle Universal Installer but you need to start from the lowest level of the repository. If you directly select the whole environment, it won't work.

- 1,004
- 14
- 19
"You can use the Oracle Universal Installer but you need to start from the lowest level of the repository. If you directly select the whole environment, it won't work."
This is the correct explanation!