Windows Powershellによるコンピュータに接続されているモニターの解像度等の情報を取得する方法を紹介
コンピュータに接続されているモニターの情報を取得(名前、デバイスID、解像度)。全てのプロパティについて取得したい場合は、Format-List * で可能。
サンプルソース
(入力)
Get-WmiObject Win32_DesktopMonitor | Format-List Name,DeviceID,ScreenHeight,ScreenWidth
(出力)
Name : 汎用非 PnP モニター
DeviceID : DesktopMonitor1
ScreenHeight : 768
ScreenWidth : 1366