Unattended Rundown Broker installation using a batch file on a local computer
Installation scenario
The unattended installation via a batch file is ideal for installing Rundown Broker on a local computer when all configuration parameters are known in advance.
Installation Instructions
Copy the complete installation folder (
Setup
) into a local directory, because access to mounted network drives may conflict with elevated privileges required during the installation process. The local folder is referred as<local_Rundown_Broker_Setup_folder>
.Rundown Broker setup folder
Open the file
Unattended_RundownBrokerSetup.bat
with your favorite text editor (or Notepad)
BASH
|
Adjust at least
USER_NAME,
DOMAIN_NAME,
USER_PASSWORD,
DPE_URL,
DPE_USER,
DPE_PASSWORD,
ROAD_REST_ADDRESS
with the appropriated values for your company. For a description of the setup properties see the https://davidsystems.atlassian.net/wiki/spaces/LRS/pages/edit-v2/946962436?draftShareId=248faeea-7143-4a81-ab0c-3c2513f45ac5#Setup-Properties below.
Save the new text file as
Unattended_RundownBrokerSetup.bat
in the<local_Rundown_Broker_Setup_folder>
folder.Open a command line window with elevated rights by press Windows+R, to open the Run dialog, type
cmd
and press Ctrl+Shift+ENTER.Change the current directory to the
<local_Rundown_Broker_Setup_folder>
folder.Type
Unattended_RundownBrokerSetup.bat
to start the installation.
If the installation was successful, the Rundown Broker Service is started.
Setup Properties
Properties are (among other) the data which the user would normally enter into the installer's GUI. Properties come as pairs of name and value. You can set properties for unattended setup on the command line by adding value=name pairs after all command line switches. Use quotation marks for values which contains spaces.
Property name | Explanation | Example | Type | Allowed values | Default value |
---|---|---|---|---|---|
APPDIR | The directory where Rundown Broker is to be installed. | C:\RundownBroker\ | string | a valid folder | C:\Program Files\DigaSystem\Rundown Broker\ |
USER_NAME | The user name of the credentials under which the Rundown Broker service should run | myname | string | (empty) | |
DOMAIN_NAME | The domain of the user name for the credentials under which the Rundown Broker service should run | domainname | string | (empty) | |
USER_PASSWORD | The password of the credentials under which the Rundown Broker service should run | mypassword | string | (empty) | |
START_SERVICE | Start service after installation. (empty) means START_SERVICE="" | (empty) | string | (empty), Checked | Checked |
DPE_URL | URL of DPE | url | (empty) | ||
DPE_USER | Name of DPE user. | dpeuser | string | (empty) | |
DPE_PASSWORD | Password of DPE user. | **** | string | (empty) | |
ROAD_REST_ADDRESS | The URL for accessing ROAD Service including port number | https://myroadhost:11003 | url | http://localhost:11003 |
Environment variables can be used. E.g., %ProgramFiles%\My Rundown Broker
would expand to C:\Program Files\My Rundown Broker