Export Icons from XenApp 6x using Citrix PS module

Add-PSSnapin *Citrix* 
Get-XAApplication | % { 
$BrowserName = $_.BrowserName 
$icon = Get-XAApplicationIcon -BrowserName $BrowserName 
$bytes = [Convert]::FromBase64String($icon.EncodedIconData) 
Add-Content -Encoding Byte -Value $bytes -Path "c:\tmp\$($BrowserName).ico" 
}

Join the Conversation

1 Comment

Leave a comment

Your email address will not be published. Required fields are marked *

WordPress Appliance - Powered by TurnKey Linux