Using silent mode to install an RSCD agent (Windows)
To perform an unattended installation of the RSCD agent on a Microsoft Windows computer, use silent mode.
To install the agent on multiple computers, you can use an Agent Installer Job or the Unified Agent Installer. See Running-the-Unified-Agent-Installer.
Before you begin
Ensure that Microsoft Visual C++ 2015 Redistributable Update 3 is installed on the server.
Microsoft Visual C++ 2015 Redistributable Update 3 can be installed automatically from Agent Installer Job - Options window and by using the the prepackaged content in depot software. However, the depot software can be used only for upgrade scenario. For more information, see Agent Installer Job - Options and Upgrading the RSCD Agent using an Agent Installer Job.
- The RSCD agent for Microsoft Windows requires that the Server service is running in order to function correctly.
- For a server to provide information about Windows Group Policy objects, the file secedit.exe must be installed on the server, and it must be included in the server's executable path.
If the server is a domain member or domain controller, confirm that the Net Logon service is enabled and running before installing the RSCD agent. The agent uses the Net Logon service to determine the domain and obtain information about the machine. If the server is not part of a Windows domain, the agent uses a different method for determining machine information. Additionally, the automation principal feature uses the Net Logon service to access domain user information so the automation principal can act as a domain user.
- The patch analysis function of TrueSight Server Automation requires the Microsoft XML (MSXML) parser version 6.0 SP2 or later to be installed on the server on which the RSCD agent is installed. You can install the RSCD agent on a computer on which MSXML is not installed, but patch analysis does not function correctly until MSXML 6.0 SP2 or later is installed.
To install the RSCD agent in silent mode
- Copy the installation program (RSCD<version-platform>.msi) to the Windows system where you plan to install the agent.
- Change the directory to the location where the installer resides.
- At the command prompt, enter the command:
msiexec /I RSCD<version-platform>.msi /QN <PROPERTY=value> <PROPERTY=value>
where:- RSCD<version-platform>.msi is the name of the agent installer.
- /QN — Sets the user interface level to no UI. Optionally, you can use /QB to display a progress bar for the installation.
- (Optional)/L*V <logLocation> — Logs information about the installation to the file you specify.
<PROPERTY=value>— Specifies a property that overrides the default installation settings.
You can specify one or more of the following properties:
The [confluence_table-plus] macro is a standalone macro and it cannot be used inline. Click on this message for details.
Configure the following properties to use the Smart Agent capabilities.NEW IN 20.02.01
Configure the following properties to enroll the targets that are provisioned in the public cloud.
The following server properties are available out-of-the-box:
You can also define custom properties.
Example:
In the following example, CLOUD_IPV6_ADDR_CNT, CLOUD_IS_PROD, CLOUD_VOLUME_CNT, and CLOUD_HAS_PUB_IP are custom properties and remaining are the out-of-the-box properties.
WM_INTERVAL_SEC=5
TUNNEL_ENABLE=true
TUNNEL_IDLE_TIMEOUT_MIN=240
#Server properties lists
SERVER_PROP_STR="CLOUD_PROVIDER,CLOUD_ACCOUNT,CLOUD_REGION"
SERVER_PROP_INT="CLOUD_IPV6_ADDR_CNT,CLOUD_VOLUME_CNT"
SERVER_PROP_BOOL="CLOUD_IS_PROD,CLOUD_HAS_PUB_IP"
#Individual server properties values
CLOUD_PROVIDER="AWS"
CLOUD_ACCOUNT="123456789012"
CLOUD_REGION="us-east-1"
CLOUD_IPV6_ADDR_CNT=2
CLOUD_VOLUME_CNT=4
CLOUD_IS_PROD=true
CLOUD_HAS_PUB_IP=false