Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mouadcherkaoui/4246845db85b59e47cb8ffadc22c6969 to your computer and use it in GitHub Desktop.
Save mouadcherkaoui/4246845db85b59e47cb8ffadc22c6969 to your computer and use it in GitHub Desktop.
Get-PnpDevice -FriendlyName *webcam*
Get-PnpDevice -FriendlyName *webcam* -Class Camera,image
Disable-PnpDevice -InstanceId (Get-PnpDevice -FriendlyName *webcam* -Class Image -Status OK).InstanceId
Disable-PnpDevice -InstanceId (Get-PnpDevice -FriendlyName *webcam* -Class Camera -Status OK).InstanceId
Enable-PnpDevice -InstanceId (Get-PnpDevice -FriendlyName *webcam* -Class Image -Status Error).InstanceId
Enable-PnpDevice -InstanceId (Get-PnpDevice -FriendlyName *webcam* -Class Camera -Status Error).InstanceId
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment