Set-CitrixCatalog
Citrix: Updates a machine catalog
param(
[Parameter(Mandatory = $true)]
[string]$Name,
[Parameter(Mandatory = $true)]
[string]$Description
)
try {
Import-Module Citrix.Broker.Admin.V2 -ErrorAction Stop
Set-BrokerCatalog -Name $Name -Description $Description -ErrorAction Stop
Write-Output "Successfully updated machine catalog '$Name'."
} catch {
Write-Error $_
exit 1
}The name of the catalog.
The new description for the catalog.