Advertisement
guyrleech

Monitor Citrix ICA Round Trip Times in real time

Jan 16th, 2020
906
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $last=$null;While($true) { $latest = Get-CimInstance -ClassName citrix_euem_roundtrip -Namespace root\citrix\euem; if( ! $last -or $last -ne $latest) { $latest|select *|export-csv -NoTypeInformation -Append -Path ica.rtt.csv; $last = $latest}; Start-Sleep -Seconds 15 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement