Skip to content

Remove-CitrixApplicationFolder

Citrix: Removes an application folder

param(
	[Parameter(Mandatory = $true)]
	[string]$Name
)

try {
	Import-Module Citrix.Broker.Admin.V2 -ErrorAction Stop
	Remove-BrokerApplicationFolder -Name $Name -Force -ErrorAction Stop
	Write-Output "Successfully removed application folder '$Name'."
} catch {
	Write-Error $_
	exit 1
}

The path to the folder to remove.

An interactive directory of PowerShell scripts.