Remove-CitrixApplicationGroupMetadata
Citrix: Removes application group metadata
param(
[Parameter(Mandatory = $true)]
[string]$Name,
[Parameter(Mandatory = $true)]
[string]$PropertyName
)
try {
Import-Module Citrix.Broker.Admin.V2 -ErrorAction Stop
Remove-BrokerApplicationGroupMetadata -Name $Name -Name $PropertyName -ErrorAction Stop
Write-Output "Successfully removed metadata property '$PropertyName' from group '$Name'."
} catch {
Write-Error $_
exit 1
}The name of the application group.
The name of the metadata property to remove.