In This Space
There are three types of scripts that you can use to install the agent.
Script type | Description |
---|---|
Pre-installation | You can use these scripts to verify that your environment is compatible with Armor Anywhere. These scripts will not install the agent.
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://get.core.armor.com/latest/armor_agent.ps1 -outfile armor_agent.ps1 ; .\armor_agent.ps1 |
Pre-installation and installation | You can use these scripts to:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://get.core.armor.com/latest/armor_agent.ps1 -outfile armor_agent.ps1 ; .\armor_agent.ps1 -license AAAA1-A11AA-AA1AA-AAAAA-1AAA |
Installation | You can use these scripts to install the agent. These scripts will not verify your environment for compatibility. [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest https://get.core.armor.com/latest/armor_agent.ps1 -outfile armor_agent.ps1 ; .\armor_agent.ps1 -license AAAA1-A11AA-AA1AA-AAAAA-1AAA -silent |
In the above scripts, replace AAAA1-A11AA-AA1AA-AAAAA-1AAA with your specific license key.
This page has no comments.