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