9 lines
304 B
PowerShell
9 lines
304 B
PowerShell
# Get Citrix Machine Catalogs and Export to Excel
|
|
# Run on Delivery Controller
|
|
|
|
# Import Citrix Modules
|
|
Add-PSSnapIn Citrix*
|
|
|
|
# Get Machine Catalogs
|
|
Get-BrokerCatalog | Select Name | export-csv ".\CitrixMachineCatalogs_202301.csv" -Append -NoTypeInformation -Encoding UTF8 -Delimiter ";"
|