Skip to content

Remove-CitrixLicenseAdministrator

Citrix: Removes a license administrator

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

try {
	Import-Module Citrix.Licensing.Admin.V1 -ErrorAction Stop
	Remove-LicAdministrator -Name $Name -Force -ErrorAction Stop
	Write-Output "Successfully removed license administrator '$Name'."
} catch {
	Write-Error $_
	exit 1
}

The name of the administrator to remove.

An interactive directory of PowerShell scripts.