Skip to content

Instantly share code, notes, and snippets.

@rpavlik
Created January 5, 2016 03:12
Show Gist options
  • Save rpavlik/4ba3835e6d4f86d1880c to your computer and use it in GitHub Desktop.
Save rpavlik/4ba3835e6d4f86d1880c to your computer and use it in GitHub Desktop.
powershell one-liner to check firmware version on hdk camera
if (@(Get-WmiObject -class Win32_PnPEntity -namespace 'root\CIMV2' | where {$_.DeviceID -like 'USB\VID_0BDA&PID_57E8&REV_0005' -or $_.DeviceID -like 'USB\VID_0BDA&PID_57E8&REV_0006'}).Count -gt 0) { echo "You need firmware updates" } else {echo "No devices found or they're up to date!"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment