Introduction |
Opening Reports |
Report Warnings |
Exporting Reports |
Command Line Parameters |
Installer Command Line Parameters |
Uninstaller Command Line Parameters |
If you install Reportizer Viewer from your own application, installer, or .BAT file, it will be useful for you to know the Reportizer Viewer installer parameters.
Reportizer Viewer installer is built by Inno Setup compiler. The description of the installer command line parameters can be found in the Inno Setup online documentation.
@echo off
REM Path where installer is
SET InstallFromPath=C:\
REM Path where to install
SET InstallToPath=c:\Program Files\Reportizer Viewer
cd "%InstallFromPath%"
REM Silent launch the installer
REM To associate Reportizer Viewer with .dtt files, use /TASKS=DTT_ASSOC
REM To associate Reportizer Viewer with .stt files, use /TASKS=STT_ASSOC
REM To associate Reportizer Viewer with .dtt and .stt files, use /TASKS=DTT_ASSOC,STT_ASSOC
echo Installing...
START /WAIT rptview.exe /SP- /VERYSILENT /NOCANCEL /DIR="%InstallToPath%" /GROUP="Reportizer Viewer"
echo Installed
pause