New Files

This commit is contained in:
2023-01-15 09:15:53 +01:00
parent 4dd48e138d
commit c47ed308b3
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
# 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 ";"

View File

@@ -0,0 +1,7 @@
# List all Citrix Farm Devices with Collection Name and Type, ready for Export to Excel
# Load PowerShell SnapIn
Import-Module C:\Program Files\Citrix\Provisioning Services Console\Citrix.PVS.SnapIn.dll
# List all Devices ready for Export to Excel
Get-PvsDeviceInfo | select DeviceName,CollectionName,Type | export-csv ".\CitrixServers_20230113.csv" -Append -NoTypeInformation -Encoding UTF8 -Delimiter ";"