Table of contents

Use deployment scripts to add and protect computers

Adding a computer to your list of protected resources in Workload Security and implementing protection is a multi-step process. Almost all of these steps can be performed from the command line on the computer and can therefore be scripted. The Workload Security console contains a deployment script writing assistant which can be accessed from the Support menu.

The deployment scripts generated through Workload Security do the following:

  • Install the agent on a chosen platform

Aactivate the agent

  • Assign a policy to the agent

Generate a deployment script

The generated deployment script changes depending on your region, so you can not use the same deployment scripts across regions.

  1. Before you begin:
    a. Make sure your agent version control settings are configured as desired. See Configure agent version control for details.
    b. Make sure you have enabled agent-initiated activation (AIA). It is required if you want your deployment script to activate the agent after installation. See Activate and protect agents using agent-initiated activation and communication for details.
  2. In the upper right corner of the Workload Security console, click Support > Deployment Scripts.
  3. Select the platform on which you are deploying the software.
  4. Select Activate agent automatically after installation.
    Agents must be activated before you apply a policy to protect the computer. Activation registers the agent with the manager during an initial communication.
  5. Optionally, select the Security Policy, Computer Group, Relay Group, Proxy to contact Workload Security, and Proxy to contact Relay(s).
  6. Optionally (but recommended), select Validate Workload Security TLS certificate.
    When this option is selected, it checks that Workload Security is using a valid TLS certificate from a trusted certificate authority (CA) when downloading the agent software, which can help prevent a "man in the middle" attack. You can check whether Workload Security is using a valid CA certificate by looking at the browser bar in the Workload Security console.
  7. Optionally (but recommended), select Validate the signature on the agent installer to have the deployment script initiate a digital signature check on the agent installer file. If the check is successful, the agent installation proceeds. If the check fails, the agent installation is aborted. Before you enable this option, understand that:
    • This option is only supported for Linux and Windows installers (RPM, DEB, or MSI files), and macOS (PKG files).
    • (Linux only) This option requires that you import the public signing key to each agent computer where the deployment script will run. For details, see Check the signature on an RPM file and Check the signature on a DEB file.
  8. The deployment script generator displays the script. Click Copy to Clipboard and paste the deployment script in your preferred deployment tool, or click Save to File. Deployment Scripts dialog box

The deployment scripts generated by Workload Security for Windows agent deployments require Windows PowerShell version 4.0 or later. You must run PowerShell as an Administrator and you may have to run the following command to be able to run scripts: Set-ExecutionPolicy RemoteSigned

If you want to deploy an agent to an early version of Windows or Linux that doesn't include PowerShell 4.0 or curl 7.34.0 at a minimum, make sure that early TLS is allowed on the manager and relays. See Determine whether TLS 1.2 is enforced and Enable early TLS (1.0) for details. Also edit the deployment script as follows:

  • Linux: Remove the --tls1.2 tag.
  • Windows: Remove the #requires -version 4.0 line. Also remove the [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; line so that early TLS (version 1.0) is used to communicate with the manager.

If you are using Amazon Web Services and deploying new Amazon EC2, Amazon WorkSpace, or VPC instances, copy the generated script and paste it into the User Data field. This lets you launch existing Amazon Machine Images (AMIs) and automatically install and activate the agent at startup. The new instances must be able to access the URLs specified in the generated deployment script.

When copying the deployment script into the User Data field for a Linux deployment, copy the deployment script as-is into the User Data field and CloudInit will execute the script with sudo. If there are failures, they are noted in /var/log/cloud-init.log.

The User Data field is also used with other services like CloudFormation. For more information, see
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html

Troubleshooting and tips

  • If you are attempting to deploy the agent from PowerShell (x86), you can receive the following error : C:\Program Files (x86)\Trend Micro\Deep Security Agent\dsa_control' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    The PowerShell script expects the environment variable for ProgramFiles to be set to the Program Files folder, as opposed to Program Files (x86). To resolve the issue, close PowerShell (x86) and run the script in PowerShell as an administrator.
  • The deployment script can be modified to perform agent updates instead of new installs by changing the rpm -ihv to rpm -U.
  • If there is a need to control the specific agent version used by the deployment scripts there are two options to meet this goal:
    • Use agent version control. See Configure agent version control for details. This approach has the advantage that you do not have to hard-code the agent version itself into each script which can be a more flexible approach for some deployments.
    • Either modify the deployment script, or write your own scripts, to meet requirements specific to your deployment. Details on the URL format to download agents can be found here URL format for download of the agent.
  • Instead of using the deployment scripts generated by the manager, you can use your own automation method coupled with an agent download URL to automate the download and installation of the agent. For details, see URL format for download of the agent.