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