■ Get-CimInstance 명령을 사용해 카메라 인스턴스 ID를 구하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 |
$id = (Get-CimInstance -Class Win32_PnpEntity | where pnpclass -match 'camera').pnpDeviceID $id |
■ Get-CimInstance 명령을 사용해 카메라 인스턴스 ID를 구하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 |
$id = (Get-CimInstance -Class Win32_PnpEntity | where pnpclass -match 'camera').pnpDeviceID $id |