Skip to content

Licensing Anyware Agents with Cloud Licensing

Cloud licensing requires no configuration beyond providing a registration code for each Anyware agent. The required registration code is provided by HP when PCoIP licenses are purchased. One registration code can be used to activate multiple Anyware agents.

Note: Registration code format

Registration codes look like this: ABCDEFGH12@AB12-A123-A12B-12AB

The license registration code can be provided manually via the Windows installer or the PCoIP Control panel, and programmatically via a PowerShell script.

Registering via Windows Installer

To provide the registration code during installation via the Windows installer:

  • Provide the registration code in the License Registration field when it appears during installation.
  • If the Anyware agent uses a proxy server to access the internet, provide your environment's proxy settings when asked during installation.

Registering via PCoIP Control Panel

To provide the registration code after installation via the PCoIP Control Panel:

  1. Open the PCoIP control panel by clicking pcoip in the system tray.
  2. Select the Licensing tab.
  3. Provide the registration code in the registration code field.

Registering via PowerShell

To provide the registration code via the Windows PowerShell script:

Run the pcoip-register-host.ps1 script during a silent installation or at any time after installation:

    "C:\Program Files\Teradici\PCoIP Agent\pcoip-register-host.ps1" [ProxyServer <String>] [ProxyPort <String>] RegistrationCode <String> [<CommonParameters>]

Important: PowerShell execution policy

PowerShell scripts must be permitted to run on your machine. If your execution policy prevents pcoip-register-host.ps1 from running, you can temporarily enable PowerShell script execution with the following command:

    powershell.exe InputFormat None ExecutionPolicy Bypass Command .\pcoip-register-host.ps1