Question USB 3.0 physical ports are not working as SuperSpeed

Nov 2, 2024
4
0
10
PC: HP Compaq Elite 8300 Small Form Factor PC
Operating System: Microsoft Windows 10 (64-bit)

Hello,

I am using my old PC's blue USB ports to plug in a USB WI-FI adapter. I would like to benefit from the USB 3.0 speed, but I get the message, "Device can perform faster when connected to USB 3.0."

I've already updated to the latest USB drivers and BIOS version.

On USB Device Viewer, I can see 4 USB SS ports available (below), but no matter which physical port I plug my devices into, they are never one of these 4 ports.

Are these USB 3.0 really available? How can I activate or access them?

I appreciate any help. Thanks!
Jordineslon_0-1730551776740.png
 
Nov 2, 2024
4
0
10
PC: HP Compaq Elite 8300 Small Form Factor PC
Operating System: Microsoft Windows 10 (64-bit)

Hello,

I am using my old PC's blue USB ports to plug in a USB WI-FI adapter. I would like to benefit from the USB 3.0 speed, but I get the message, "Device can perform faster when connected to USB 3.0."

I've already updated to the latest USB drivers and BIOS version.

On USB Device Viewer, I can see 4 USB SS ports available (below), but no matter which physical port I plug my devices into, they are never one of these 4 ports.

Are these USB 3.0 really available? How can I activate or access them?

I appreciate any help. Thanks!
Jordineslon_0-1730551776740.png
Are u using a seperate plug-in usb hub with a number of ports?
No, only the computer standard ports. Physically there are only 10 ports (4 USB 3.0 and 6 USB 2.0).
 
Sep 27, 2024
26
5
35
USB3 connectors basically include USB2 on a few pins. So check with different cables; if you used the same cable for every port, and the cable is broken, the outcome will be exactly what you see. Also test with different USB3 devices, as the connector on the USB3 device may also be broken.
outdated or incorrectly installed USB drivers, locked or write-protected devices, and virus or malware infections on your computer or the USB device
 
Nov 2, 2024
4
0
10
USB3 connectors basically include USB2 on a few pins. So check with different cables; if you used the same cable for every port, and the cable is broken, the outcome will be exactly what you see. Also test with different USB3 devices, as the connector on the USB3 device may also be broken.
outdated or incorrectly installed USB drivers, locked or write-protected devices, and virus or malware infections on your computer or the USB device
Hi, thanks for the suggestion. I connected an external SDD drive (USD 3.0) in different blue ports, and it keeps not connecting using USB3. I uninstalled and reinstalled all USB controller drivers, but there were no changes.
 

Ralston18

Titan
Moderator
Does the following Powershell cmdlet list connected USB devices/drives ?

Get-PNPDevice -Class "USB"
Results from my computer:

PS C:\WINDOWS\system32> Get-PNPDevice -Class "USB"

Status Class FriendlyName InstanceId
------ ----- ------------ ----------
OK USB Logitech USB Camera (Pro 9000) USB\VID_046D...
OK USB Intel(R) USB 3.1 eXtensible Host Controller - 1.10 (Microsoft) PCI\VEN_8086...
OK USB USB Root Hub (USB 3.0) USB\ROOT_HUB...
OK USB Realtek USB 2.0 Card Reader USB\VID_0BDA...
Unknown USB USB Mass Storage Device USB\VID_174C...
OK USB USB Composite Device USB\VID_046D...


PS C:\WINDOWS\system32>


And you can alter the format further by using:

PS C:\WINDOWS\system32> Get-PnpDevice -Class USB | Format-List Name,DeviceID,Driver


Name : Logitech USB Camera (Pro 9000)
DeviceID : USB\VID_046D&PID_0990\7CEA4228

Name : Intel(R) USB 3.1 eXtensible Host Controller - 1.10 (Microsoft)
DeviceID : PCI\VEN_8086&DEV_A36D&SUBSYS_08681028&REV_10\3&11583659&0&A0

Name : USB Root Hub (USB 3.0)
DeviceID : USB\ROOT_HUB30\4&3798F3CA&0&0

Name : Realtek USB 2.0 Card Reader
DeviceID : USB\VID_0BDA&PID_0129\20100201396000000

Name : USB Mass Storage Device
DeviceID : USB\VID_174C&PID_55AA\1234567891DF

Name : USB Composite Device
DeviceID : USB\VID_046D&PID_C52B\5&16E922E4&0&9


Objective being to use Powershell as another way to see things from a "Windows" viewpoint.

Note: You can easily copy and paste Powershell cmdlets into Powershell.