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