This section describes how to install Recovery Manager for Active Directory Forest Edition. With Recovery Manager for Active Directory Forest Edition installed, you can perform such tasks as
There are two methods to install Recovery Manager for Active Directory Forest Edition:
Each of these methods is described in the next sections.
By using this installation method, you can install Recovery Manager for Active Directory Forest Edition with either default or custom parameters. For more information on the aspects of the product installation that you can customize, see the table in the next procedure.
To install the product by using the Setup Wizard
Option | Description |
---|---|
Express | Installs Recovery Manager for Active Directory Forest Edition with default parameters. This option also installs the Microsoft SQL Server version supplied with the product. |
Custom |
Allows you to customize the product installation by specifying the following:
NOTE: When configuring Recovery Manager for Active Directory Forest Edition to create and display reports using Microsoft SQL Server Reporting Services, you must start the Setup Wizard under the user account that is assigned the predefined Content Manager role on the target SQL Server. |
A silent (or unattended) installation of Recovery Manager for Active Directory Forest Edition does not require any user interaction. With this method, you specify the Recovery Manager for Active Directory Forest Edition installation parameters at a command prompt before running the installation.
You can only perform a silent installation of Recovery Manager for Active Directory Forest Edition when all of the following conditions are true:
To perform a silent installation of Recovery Manager for Active Directory Forest Edition
|
NOTE: You must install all the required software components manually before you run the command-line installation of the product. Otherwise, the installation will fail. For more details, see the System Requirements section in Release Notes. |
Enter the following syntax at a command prompt:
Msiexec /i "<Path to the Recovery Manager for Active Directory Forest Edition installation CD> \Setup\Rmadfe.msi" /qb SQLSERVER="<SQLServerName>\<InstanceName>" SQLAUTHENTICATION="0" LICENSE="<LicensePath>"
You can explicitly specify RMAD features that you want to install. For that, use the following command line:
Msiexec /qn /i RMADFE_x64.msi ADDLOCAL=RMAD,ForestRecovery,ForestEditionFiles,PowerShellFE,ReportsViewer,RemoteAPIAccess,Persistence
The table below describes the parameters you can use to perform a silent installation of Recovery Manager for Active Directory Forest Edition.
Table 1: Silent installation parameters
Parameter | Description | Example |
---|---|---|
ADDLOCAL |
Explicitly specifies Recovery Manager for Active Directory Forest Edition features to install. Available options: RMAD, ReportsViewer, RemoteAPIAccess, PowerShell |
Example for a 32-bit system: Msiexec /qn /i RMADFE_x86.msi ADDLOCAL=RMAD,ReportsViewer,PowerShell,RemoteAPIAccess Example for a 64-bit system: Msiexec /qn /i RMADFE_x64.msi ADDLOCAL=RMAD,ReportsViewer,PowerShell,RemoteAPIAccess |
BACKUP_PATH | Specifies the location where Recovery Manager for Active Directory Forest Edition will store Active Directory backups. If this parameter is omitted, the backups are stored in %AllUsersProfile%\ Application Data\ Dell\Recovery Manager for Active Directory\Backups. Make sure that the volume hosting the backup storage folder has enough disk space. The backup files could reach several hundred megabytes in size. | Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" BACKUP_PATH="<PathToStoreADBackups>" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" BACKUP_PATH="<PathToStoreADBackups>" |
INSTALLDIR | Specifies the Recovery Manager for Active Directory Forest Edition installation folder. If this parameter is omitted, the following default folder is used: %ProgramFiles%\Dell\Recovery Manager for Active Directory Forest Edition | Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" INSTALLDIR="<PathToInstallationFolder>" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" INSTALLDIR="<PathToInstallationFolder>" |
LICENSE | Specifies the path to the license file. | Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" LICENSE="<LicensePath>" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" LICENSE="<LicensePath>" |
REMOVE |
Removes specified Recovery Manager for Active Directory Forest Edition features. Available options: RMAD, ReportsViewer, RemoteAPIAccess, PowerShell |
Example for a 32-bit system: Msiexec /qn /i RMADFE_x86.msi REMOVE=RMAD,ReportsViewer,PowerShell,RemoteAPIAccess Example for a 64-bit system: Msiexec /qn /i RMADFE_x64.msi REMOVE=RMAD,ReportsViewer,PowerShell,RemoteAPIAccess |
SQLSERVER | Specifies the name and instance of a local or remote SQL Server to store Recovery Manager for Active Directory Forest Edition data. This is a required parameter. | Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" |
SQLDBNAME_REPORTING | Specifies an existing or new database to store Recovery Manager for Active Directory Forest Edition report data. This database resides in the SQL Server instance defined in the SQLSERVER parameter. If you specify a database that does not exist, it will be created. If the SQLDBNAME_REPORTING parameter is omitted, a new database with the following name is created and used: RecoveryManager-Reporting- <name of the Recovery Manager for Active Directory Forest Edition computer> | Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" SQLDBNAME_REPORTING= "<DatabaseName>" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" SQLDBNAME_REPORTING= "<DatabaseName>" |
SQLAUTHENTICATION | Specifies the SQL Server authentication method. You can use one of the following values:
|
Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" SQLAUTHENTICATION="0" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" SQLAUTHENTICATION="0" |
SQLUSERNAME | Specifies the user name for authentication on the SQL Server. This parameter is required if you set the SQLAUTHENTICATION parameter value to "1". | Example for a 32-bit system: Msiexec /i "E:\Setup\RMADFE_x86.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" SQLAUTHENTICATION="1" SQLUSERNAME="<UserName>" SQLUSERPASSWORD="<Password>" Example for a 64-bit system: Msiexec /i "E:\Setup\RMADFE_x64.msi" /qb SQLSERVER="<SQLServerName>\ <InstanceName>" SQLAUTHENTICATION="1" SQLUSERNAME="<UserName>" SQLUSERPASSWORD="<Password>" |
SQLUSERPASSWORD | Specifies the password for authentication on the SQL Server. This parameter is required if you set the SQLAUTHENTICATION parameter value to "1". | |
VIEWER_APPLICATION_TYPE |
Specifies the application to be used for viewing Recovery Manager for Active Directory Forest Edition reports. You can use one of the following values:
|
Example for a 32-bit system: Example for a 64-bit system: |
VIEWER_REPORTING_SERVER | Specifies the HTTP address to access Microsoft SQL Server Reporting Services. This parameter is required if you set the VIEWER_APPLICATION_TYPE parameter value to "remote". |
Example for a 32-bit system: Example for a 64-bit system: |
To remove Recovery Manager for Active Directory Forest Edition, complete the following steps:
If an antivirus program is running on the Recovery Manager for Active Directory Forest Edition computer, you may be prompted to restart the computer.
To uninstall Recovery Manager for Active Directory Forest Edition without restarting, disable any antivirus program on the computer first, and then uninstall Recovery Manager for Active Directory Forest Edition.
© 2021 Quest Software Inc. ALL RIGHTS RESERVED. Feedback Terms of Use Privacy