Quick way with (elevated) #PowerShell to see the versions of particular vendor's running processes. I also remoted this since mstsc etc is overkill
ps |where path -match citrix|gp|select -expand versioninfo
ps=Get-Process
gp = Get-ItemProperty (-path arg comes from path property from Get-Process)
ps |where path -match citrix|gp|select -expand versioninfo
ps=Get-Process
gp = Get-ItemProperty (-path arg comes from path property from Get-Process)