Keyboard and mouse frozen on Windows 10 startup

Theo1490 -  
Theo1490 Posted messages 5 Registration date   Status Membre Last intervention   -
Hello,

Since last night, when the PC performed an update and then restarted, the mouse and keyboard become inactive when Windows starts up. Let me explain:
They work perfectly fine until the Windows logo appears, then the keyboard LEDs and mouse beam go off. As a result, I am stuck on the welcome screen (the photo with the time in the bottom right), and I can't do anything since the keyboard and mouse become inactive.

I have tried various options by accessing the Startup Options with Alt + F10 after force shutting down the PC using the power button: resetting, repairing, canceling the latest updates...

I also tried the sfc /scannow, which doesn't work either

In short, nothing is working, and of course I didn't make a backup....

Do you have any idea how to fix this problem?

Thank you very much in advance for your responses

Have a nice day,

Théo

Configuration: Android / Chrome 80.0.3987.87

15 réponses

Cedric69004 Posted messages 36 Status Membre 7
 
I see two possibilities:
1. Try restarting in safe mode, uninstall the faulty update, remove and reinstall the keyboard and mouse drivers from Device Manager.
2. If safe mode is inaccessible, attempt to remove the update from the command prompt:
- use the command to display hotfixes: systeminfo.exe
- use the wusa command to remove the faulty hotfix:
wusa /uninstall /kbxxxx /quiet /norestart
(replace kbxxxx with the name of the hotfix)

- if the wusa command hangs, use the dism commands:
dism /online /get-packages /format:table
dism /online /remove-package /packagename:kbxxxx
(replace kbxxxx with the name of the hotfix)

Then, still in the command prompt, attempt to remove the drivers:
- Find the driver with the commands:

cd windows\system32
pnputil.exe -e

- Remove the faulty driver
pnputil.exe /delete-driver faultydriver.inf /force
(replace faultydriver.inf with the name of the driver to remove)

After restarting, check if Windows installs generic drivers that are accessible.
The procedure is hard but I don’t see any other solution, otherwise reinstall Windows.
1
Theo1490
 
Sure, thanks, I'll try that
By the way, what's the command to type for systeminfo.exe?
As for safe mode, unfortunately it doesn't work any better
Thanks!
0