Windows PowershellによるIRQ(割り込み)の情報を取得する方法を紹介
IRQ(割り込み)の情報を取得(IRQ番号、ベース)。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_IRQResource | Format-List Name,Hardware,Vector
(出力)
Name : IRQ22
Hardware : True
Vector : 22
Name : IRQ12
Hardware : True
Vector : 12
Name : IRQ23
Hardware : True
Vector : 23
Name : IRQ0
Hardware : True
Vector : 4294967295
Name : IRQ4294967294
Hardware : True
Vector : 4294967295