kleonard Posted January 25, 2017 Report post Posted January 25, 2017 I am trying to deploy Oracle 12cR1 64bit using a response file but my installs keep failing. I have tried creating a package and running a batch file, running from a command line in a task sequence, creating an app but they all fail. I can run the install by hand with no issues. The command I am running is: "setup.exe" -responseFile "12cr1x64.rsp" -nowait -silent Some of the messages I have gotten are the response file cannot be found. Has anyone successfully packaged Oracle12cR1? Id appreciate any feed back. Thanks Quote Share this post Link to post Share on other sites More sharing options...
Dean Posted January 25, 2017 Report post Posted January 25, 2017 have you tried "fully qualifying' the path to the response file? I seem to have "where is this running from issues" and making sure I know where the response file is, seems to help! I use %~dp0 if the file is in the same folder as the setup command (in my batch files) Quote Share this post Link to post Share on other sites More sharing options...
Apexes Posted February 1, 2017 Report post Posted February 1, 2017 Yep, it took me forever to get it working. I created a .bat with the following, and running inside of a task sequence "setup.exe -silent -waitforcompletion -noconsole -force -nowait -responseFile "%~dp0client.rsp" Quote Share this post Link to post Share on other sites More sharing options...