Install Oracle Client from command line without user-interaction

后端 未结 2 1199
走了就别回头了
走了就别回头了 2020-12-18 10:41

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

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-18 11:26

    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.

提交回复
热议问题