Skip to content

Add-CitrixController

Citrix: Adds a controller to the site

param(
	[Parameter(Mandatory = $true)]
	[string]$ControllerName
)

try {
	Import-Module Citrix.Broker.Admin.V2 -ErrorAction Stop
	$controller = Add-BrokerController -Name $ControllerName -ErrorAction Stop
	Write-Output $controller
} catch {
	Write-Error $_
	exit 1
}

The FQDN of the controller to add.

An interactive directory of PowerShell scripts.