■ wmic 명령을 사용해 카메라의 물리적 장치 객체명(Physical Device Object Name)을 구하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 |
wmic path Win32_PnPSignedDriver where "FriendlyName LIKE '%camera%'" get DeviceName,FriendlyName,PDO wmic path Win32_PnPSignedDriver where "DeviceName = 'USB Video Device' and PDO LIKE '\\Device\\%'" get DeviceName,FriendlyName,PDO |