Skip to content

Remove-CitrixIcon

Citrix: Removes a Citrix icon

param(
	[Parameter(Mandatory = $true)]
	[int]$Id
)

try {
	Import-Module Citrix.Broker.Admin.V2 -ErrorAction Stop
	Remove-BrokerIcon -Uid $Id -Force -ErrorAction Stop
	Write-Output "Successfully removed icon '$Id'."
} catch {
	Write-Error $_
	exit 1
}

The unique ID of the icon to remove.

An interactive directory of PowerShell scripts.