Carl Stalhood

Sunday 24 July 2016

PowerShell Xenapp 6.0 & 6.5 Application Report

https://youtu.be/XSFJ0xx7ztY

PowerShell Xenapp 6.0 & 6.5 Application Report

Add-PSSnapin Citrix*

Get-XAApplicationReport * | select DisplayName, FolderPath, ApplicationType, Enabled, CommandLineExecutable, ClientFolder, @{n="Servers";e={[string]::join(" ; ", $_.ServerNames)}}, @{n="WorkerGroups";e={[string]::join(" ; ", $_.WorkerGroupNames)}}, @{n="Users";e={[string]::join(" ; ", $_.Accounts)}} | Export-Csv -NoTypeInformation -Force C:\temp\XAReport.csv


Get-XAWorkerGroup | Select WorkerGroupname, @{n="Servers";e={[string]::join(" ; ", $_.ServerNames)}} | export-csv -NoTypeInformation -force c:\temp\WG.csv

No comments:

Post a Comment