Import/Export XenApp Applications with Powershell
If there is one functionality that has been requested from myself and Citrix it is the ability to import/export applications.
With the XenApp cmdlets this is super trivial.
This is the SUPER COMPLEX Script
Get-XAApplication -full | Export-Clixml .\MyApps.txt
# Make sure the Apps are as you want
Import-Clixml .\MyApps.txt
# To Import
Import-Clixml .\MyApps.txt| New-XAApplication
# Lets see what apps we have now (I added the Imported)
Get-XAApplication | select BrowserName
# Make sure the Apps are as you want
Import-Clixml .\MyApps.txt
# To Import
Import-Clixml .\MyApps.txt| New-XAApplication
# Lets see what apps we have now (I added the Imported)
Get-XAApplication | select BrowserName
Not at all complex is it? Great stuff.
Here is a demo that shows how to do it.
Download XenAppExport Demo

