Creating batch files for installing in silent mode

You can create a batch file to install Data Protection for Oracle in silent mode, with the parameters that you want.

About this task

The following example shows a sample script that includes specific installation options.

@echo off
 rem ===================================
 rem sample silent install script
 rem
 setup /s /v"INSTALLDIR=\"X:\Install Path\" /qn"
 rem ====================================
 rem Code can be added after the
 rem installation completes to
 rem customize the dsm.opt files 
 rem if needed.
 rem ====================================