The network connection to your application was interrupted

The network connection to your application was interrupted. Try to access your application later, or contact your help desk. 

CitrixDisconnectAnnoyingImage

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Citrix\ICAPolicies]
"SendICAKeepAlives"=dword:00000001
"ICAKeepAliveTimeout"=dword:0000003

Reference

http://support.citrix.com/article/CTX708444

Citrix Get Application Details

Get-xaapplicationReport *|select DisplayName,{$_.ServerNames},Enabled,{$_.Accounts}|export-csv .\test.csv

# Get all servers for applications in the farm

Get-XAApplicationReport * | select DisplayName, @{n="Servers";e={[string]::join("-", $_.ServerNames)}} | convertto-csv

# https://discussions.citrix.com/topic/259503-need-to-get-a-list-of-servers-per-app-for-all-apps-in-farm/