#author("2020-05-13T02:07:34+00:00","default:admin","admin") #author("2020-05-13T02:49:19+00:00","default:admin","admin") [[Get-Counter:https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.diagnostics/get-counter?view=powershell-7]] -[[【 Get-Counter 】コマンドレット――システムのパフォーマンスを計測する:https://www.atmarkit.co.jp/ait/articles/1609/16/news035.html]] -[[PowerShell 7.0.0 Preview6新機能 - パフォーマンスカウンター:https://news.mynavi.jp/itsearch/article/hardware/4828]] -[[Get-Counter: Use PowerShell to Get Hyper-V Performance Data:https://www.altaro.com/hyper-v/get-counter/]] -[[PowerShell で Windows のパフォーマンスを観察しながらログに残す:https://qiita.com/asterisk9101/items/1e450514f3416ca18414]] -[[PowerShell で基本的なコンピュータリソースのメトリクスをとる(プロセスごと):https://ujun.hatenablog.com/entry/2018/07/11/201832]] -[[パフォーマンスモニターを操作するあれこれ:https://blog.engineer-memo.com/2013/12/22/%E3%83%91%E3%83%95%E3%82%A9%E3%83%BC%E3%83%9E%E3%83%B3%E3%82%B9%E3%83%A2%E3%83%8B%E3%82%BF%E3%83%BC%E3%82%92%E6%93%8D%E4%BD%9C%E3%81%99%E3%82%8B%E3%81%82%E3%82%8C%E3%81%93%E3%82%8C/#PowerShell]] -プロセッサのパフォーマンスを5秒間隔で計測 Get-Counter "\Processor(_total)\% Processor Time" -Continuous -SampleInterval 5 -プロセッサのパフォーマンスを5秒間隔で計測し、3つのデータを取得する Get-Counter "\Processor(_total)\% Processor Time" -MaxSamples 3 -SampleInterval 5