Tuesday, August 29, 2017

Powershell command to get the inventory for XenApp 6.0

Get-XAApplicationReport * | select DisplayName,FolderPath,Enabled,CommandLineExecutable, @{n="Servers";e={[string]::join("-", $_.ServerNames)}} | Export-Csv Inventory.csv

2 comments: