SDS100 USB VID and PID

Status
Not open for further replies.

mrf1022

Member
Premium Subscriber
Joined
Apr 10, 2006
Messages
34
Location
Portland, OR
Can someone share the USB vendor ID (VID) and product ID (PID) for the SDS100? I'm working on updating a utility to support it. You can get this by connecting the scanner in USB Mass Storage mode and then running one of the following commands:

Terminal on macOS:
Code:
ioreg -p IOUSB -l -w 0 -k "idProduct" -r -x | grep "USB:1965"
Example output (for a BCD436):
Code:
        "uid" = "USB:1965001C000000000001"

PowerShell on Windows:
Code:
gwmi Win32_USBControllerDevice |%{[wmi]($_.Dependent)} | where-object { $_.DeviceID -like '*VID_1965*' } | ft DeviceID -auto
Example output (for a BCD436):
Code:
DeviceID
--------
USB\VID_1965&PID_001C\0000000000001
 

jasonhouk

Uniden Betaman
Joined
Mar 29, 2013
Messages
892
Location
Marion, Ohio
Can someone share the USB vendor ID (VID) and product ID (PID) for the SDS100? I'm working on updating a utility to support it. You can get this by connecting the scanner in USB Mass Storage mode and then running one of the following commands:

Terminal on macOS:
Code:
ioreg -p IOUSB -l -w 0 -k "idProduct" -r -x | grep "USB:1965"
Example output (for a BCD436):
Code:
        "uid" = "USB:1965001C000000000001"

PowerShell on Windows:
Code:
gwmi Win32_USBControllerDevice |%{[wmi]($_.Dependent)} | where-object { $_.DeviceID -like '*VID_1965*' } | ft DeviceID -auto
Example output (for a BCD436):
Code:
DeviceID
--------
USB\VID_1965&PID_001C\0000000000001

Serial mode:

DeviceID
--------
USB\VID_1965&PID_001A\5&35655AA8&0&6

Houk
 

mrf1022

Member
Premium Subscriber
Joined
Apr 10, 2006
Messages
34
Location
Portland, OR
It's a macOS tool for updating scanner firmware. I dislike loading a Windows VM just to install firmware updates.
 
Status
Not open for further replies.
Top