Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $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