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