Overblog Tous les blogs Top blogs Technologie & Science Tous les blogs Technologie & Science
Editer l'article Suivre ce blog Administration + Créer mon blog
MENU

[Export] [XenApp] [Powershell] Export a list of all XenApp published applications via Powershell

Publié le par damcuvelier

[Export] [XenApp] [Powershell] Export a list of all XenApp published applications via Powershell

XenApp 6.x:

Add-PSSnapin *citrix*
Get-XAApplicationReport *  | Select BrowserName, {($_.ServerNames | Sort) -join ", "} | Export-csv c:\tmp\XA-AppReport.csv

XenApp 7.x:

Add-PSSnapin *citrix*
Get-Brokerapplication | Select-Object PublishedName,ApplicationName,ServerNames,AssociatedUserNames,BrowserName | Export-csv c:\tmp\XA-AppReport.csv

Commenter cet article