Export a list of all XenApp 7.x published applications via Powershell

If you want to export a list of all published applications used in your environment you can do this with PowerShell.

First add the Citrix PowerShell snapin:

asnp Citrix.*



Then run the Command which will export a TXT File which contains the Published Name and the Application Name. This can be extended to almost anything you need.

More parameters you'll find in the Citrix Developer Documentation:
https://developer-docs.citrix.com/projects/delivery-controller-sdk/en/7.17/Broker/Get-BrokerApplication/

MaxRecordCount 300 extends the output to 300 objects. The default value is 250. If you have more then 250 Applications you need this value.


 Get-Brokerapplication -MaxRecordCount 300 | Select-Object PublishedName,ApplicationName | fl >c:\application.txt



Then you'll find the TXT file in your specified output folder:


It will be displayed like this:



Comments

Popular posts from this blog

Implementing Single Sign On with NetScaler and Kerberos Constrained Delegation (KCD)

How to: Create a Client Certificate for LDAPS with OpenSSL