Set-CitrixTag
Citrix: Updates a tag
param(
[Parameter(Mandatory = $true)]
[string]$Name,
[Parameter(Mandatory = $true)]
[string]$Description
)
try {
Import-Module Citrix.Broker.Admin.V2 -ErrorAction Stop
Set-BrokerTag -Name $Name -Description $Description -ErrorAction Stop
Write-Output "Successfully updated tag '$Name'."
} catch {
Write-Error $_
exit 1
}The name of the tag.
The new description for the tag.