VBS(VBScript)によるデバイスのメモリアドレスの情報を取得する方法を紹介
WMIを使って、デバイスのメモリアドレスの情報を取得(メモリ位置、開始位置、終了位置)
サンプルソース
※取得可能なプロパティ(情報)は、以下手順で取得可能⇒WMIのクラス・プロパティ一覧の確認
※「型が一致しません」のエラーが出る場合⇒VBSのWMIの出力で、型が一致しませんのエラーが出る場合
(入力:cscript)
Dim qu,cl,swbe,service,sms1,sms2,sms3
Set swbe = WScript.CreateObject("WbemScripting.SWbemLocator")
Set service = swbe.ConnectServer
Set qu = service.ExecQuery("Select * From Win32_DeviceMemoryAddress")
For Each cl In qu
sms1 = cl.Description
sms2 = cl.StartingAddress
sms3 = cl.EndingAddress
Wscript.Echo "Description:" & sms1
Wscript.Echo "StartingAddress:"& sms2
Wscript.Echo "EndingAddress:"& sms3
Wscript.Echo
Next
(出力)
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
・・・・・・・・・・・(省略)・・・