Windows Powershellによるデバイスのメモリアドレスの情報を取得する方法を紹介
デバイスのメモリアドレスの情報を取得(メモリ位置、開始位置、終了位置)。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_DeviceMemoryAddress | Format-List Description,StartingAddress,EndingAddress
(出力)
Description : 0xF8000000-0xFBFFFFFF
StartingAddress : 4160749568
EndingAddress : 4227858431
Description : 0x0000-0x9FFFF
StartingAddress : 0
EndingAddress : 655359
Description : 0xC0000-0xDFFFF
StartingAddress : 786432
EndingAddress : 917503
Description : 0xE0000-0xFFFFF
StartingAddress : 917504
EndingAddress : 1048575
・・・・・・・・・・・(省略)・・・