Windows Powershellによるキャッシュメモリの情報を取得する方法を紹介
キャッシュメモリの情報を取得(キャッシュタイプと、キャッシュの最大値(KB))。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_CacheMemory | Format-List DeviceID,CacheType,MaxCacheSize
(出力)
DeviceID : Cache Memory 0
CacheType : 4
MaxCacheSize : 32
DeviceID : Cache Memory 1
CacheType : 3
MaxCacheSize : 32
DeviceID : Cache Memory 2
CacheType : 5
MaxCacheSize : 256
DeviceID : Cache Memory 3
CacheType : 5
MaxCacheSize : 3072