|
From: Alexander H. <ale...@go...> - 2015-10-09 06:24:53
|
On 09.10.2015 07:27, Christian Franke wrote:
> Interesting...
> DeviceId appears with SCSI\\.., prefix, smartctl USB ID search expects
> USBSTOR\\...
>
>
> Please start the WMI shell (wmic) in a console and run the following two
> command lines:
>
> path win32_pnpentity where
> deviceid="SCSI\\DISK&VEN_WDC_WD30&PROD_EZRX-22D8PB0\\000000" get
> compatibleid,name
> path win32_pnpentity where name="WDC WD30 EZRX-22D8PB0 SCSI Disk Device"
> get compatibleid,deviceid
There you go:
wmic:root\cli>path win32_pnpentity where
deviceid="SCSI\\DISK&VEN_WDC_WD30&PROD_EZRX-22D8PB0\\000000" get
compatibleid,name
CompatibleID Name
{"SCSI\Disk", "SCSI\RAW"} WDC WD30 EZRX-22D8PB0 SCSI Disk Device
wmic:root\cli>path win32_pnpentity where name="WDC WD30 EZRX-22D8PB0
SCSI Disk Device" get compatibleid,deviceid
CompatibleID DeviceID
{"SCSI\Disk", "SCSI\RAW"} SCSI\DISK&VEN_WDC_WD30&PROD_EZRX-22D8PB0\000000
|