I am looking for a way to install Oracle client on Windows but running from command line. In order to run it automatically there shall be no user-interaction
setup.exe -silent -nowait -ignoreSysPrereqs -ignorePrereq -waitForCompletion \
-force "INVENTORY_LOCATION=C:\Program Files\Oracle\Inventory" \
"ORACLE_BASE=c:\oracle\product" "ORACLE_HOME=c:\oracle\product\12.2\Client_x64" \
"oracle.install.IsBuiltInAccount=true" \
"oracle.install.client.installType=Administrator" \
"oracle.install.client.customComponents=oracle.rdbms.util:12.2.0.1.0,oracle.sqlplus:12.2.0.1.0,oracle.odbc:12.2.0.1.0"
This works for me. This will install Oracle Client Admin version from Command Prompt in Windows 10 {as i have used}. Thanks to the earlier posts.