PowerShell コマンドレットを使用して、PCoIP 統計情報を表示できます。
次の例では、Get-WmiObject コマンドレットを使用して、クライアント cm-02 の PCoIP ネットワーク統計情報を取得します。
Get-WmiObject -namespace "root\cimv2" -computername cm-02 -class Win32_PerfRawData_TeradiciPerf_PCoIPSessionNetworkStatistics
次の例では、Get-WmiObject コマンドレットを使用して、送信済みパケットが失われた場合にデスクトップ dt-03 の PCoIP 一般セッション統計情報を取得します。
Get-WmiObject -namespace "root\cimv2" -computername desktop-03 -query "select * from Win32_PerfRawData_TeradiciPerf_PCoIPSessionGeneralStatistics where TXPacketsLost > 0"