Перейти к основному содержанию

The Lenovo ThinkPad S431 is a laptop with an aluminum exterior. It can be identified by looking for the model number "S431" on the right top corner of the keyboard. The ThinkPad is 0.8 inches thick and has a touch-enabled display.

2вопросов Показать все

Right USB ports randomly stopped working

The right usb port on my s431 laptop randomly stopped working and displays a “USB device malfunctioned message”. When I reseated the USB board the port started working but then the next day it stopped working. Would this USB board require a replacement or is there something else that is wrong? All the other parts on the board like the HDMI port and the audio jack still work it’s just the USB port on the right.

Отвечено! Посмотреть ответ У меня та же проблема

Это хороший вопрос?

Оценка 0
Добавить комментарий

2 Ответов

Выбранное решение

Hi @jimmysofat6864 ,

Check that the USB port’s power is not being turned off.

Go to Device Manager > Universal Serial Bus Controllers > right click Root Hub > Properties > Power Management and check that the option “Allow the computer to turn off this device to save power” has been unchecked.

To get to Device Manager, press the Win key + x key (both together) and click on the Device Manager link

I don’t know which root hub is associated with the right USB port, so you will have to check all of them.

Here’s an image from my PC just to show what I mean. It is slightly different as I have a different PC, so different hardware but for the USB Root Hub entries, the principle is the same.

Block Image

(click on image to enlarge.

If still no good you may have to replace the card or the connecting cable and check if that resolves the problem.

Search online for 04X1089 to find suppliers of the card w/cable that suit you best.

Here’s the hardware maintenance manual for the laptop. Go to p.82 to view the necessary pre-requisite steps and then the procedure to remove/replace the Audio, HDMI, and USB card (aka IO port sub card)

Был ли этот ответ полезен?

Оценка 2

2 Комментариев:

I unchecked it for each usb port/controller and I still have the same issue. Sometimes it randomly dies and comes back but unplugging and replugging in the USB board seems to fix it. I'm probably going to keep it the way it is because the replacement boards are kind of expensive.

из

I got around to replacing the board and it appears to be the USB board being bad and replacing it fixed my issue.

из

Добавить комментарий

its not only for the Root Hub

set it for each and every elemeents under Device Manager > Universal Serial Bus Controllers,

here is the script to do sos

  1. Get all USB devices

$usbDevices = Get-PnpDevice -Class USB -PresentOnly

  1. Iterate through each USB device

foreach ($device in $usbDevices) {

  1. Get the device ID

$deviceId = $device.InstanceId

  1. Get the registry path for the device's power settings

$regPath = "HKLM:\SYSTEM\CurrentControlSet\Enum\$deviceId\Device Parameters"

  1. Check if the registry path exists

if (Test-Path $regPath) {

  1. Set the power management option to unchecked

Set-ItemProperty -Path $regPath -Name "DevicePowerManagementEnabled" -Value 0 -Force

Write-Host "Power management option unchecked for device: $($device.FriendlyName)"

} else {

Write-Host "Registry path not found for device: $($device.FriendlyName)"

}

}

example output
Power management option unchecked for device: Generic SuperSpeed USB Hub

Power management option unchecked for device: USB Composite Device

Power management option unchecked for device: Generic USB Hub

Power management option unchecked for device: Generic USB Hub

Power management option unchecked for device: USB Composite Device

Power management option unchecked for device: USB Composite Device

Power management option unchecked for device: Generic USB Hub

Power management option unchecked for device: USB Root Hub (USB 3.0)

Power management option unchecked for device: Generic SuperSpeed USB Hub

Power management option unchecked for device: Intel(R) USB 3.10 eXtensible Host Controller - 1.20 (Microsoft)

Power management option unchecked for device: USB Composite Device

Power management option unchecked for device: USB Root Hub (USB 3.0)

Power management option unchecked for device: Intel(R) USB 3.10 eXtensible Host Controller - 1.20 (Microsoft)

Power management option unchecked for device: USB Composite Device

Power management option unchecked for device: USB Composite Device

Был ли этот ответ полезен?

Оценка 0
Добавить комментарий

Добавьте свой ответ

jimmysofat6864 будет вечно благодарен.
Просмотр статистики:

За последние 24часов: 18

За последние 7 дней: 88

За последние 30 дней: 463

За всё время: 19,586