Hi Michael, you are always welcome and I'm glad it is now all good.
I have compatibility problems with drivers; uninstalled some but others I can't find.
I must uninstall some Huawei & Logitech drivers from my pc because of compatibility issues. (My Microsoft virus &c. protection can't be turned on.) I removed several manually from the device manager but can't find half a dozen drivers. I tried advice I read here as system administrator, to type in pnputil/enum-drivers but that didn't work. It didn't recognize the command. I'm pretty much a novice, by the way. Thanks!
Windows for home | Windows 11 | Security and privacy
6 answers
Sort by: Most helpful
-
Lester Bernard Reyes 73,180 Reputation points Independent Advisor
2026-01-28T04:20:56.9833333+00:00 -
Q&A Assist2026-01-16T22:58:47.04+00:00 AI generated content. This question contains an answer created with AI from Q&A Assist. Learn moreTo uninstall drivers that you cannot find in Device Manager, you can use the PnPUtil command line tool. It seems that you might have encountered an issue with the command you tried. The correct command to enumerate drivers is
pnputil /enum-drivers(note the space betweenpnputiland/enum-drivers). This command will list all the driver packages installed on your system, which can help you identify the ones you want to remove.Once you have identified the drivers you wish to uninstall, you can use the following command to delete a driver package:
pnputil /delete-driver <Published Name> /uninstallMake sure to replace
<Published Name>with the actual name of the driver package you want to remove. This command will also uninstall the driver from any devices that are using it.If you are still having trouble, ensure that you are running the Command Prompt as an administrator, as administrative rights are required for most PnPUtil commands.
Additionally, if you want to ensure that your Microsoft virus protection can be turned on, it may be beneficial to create a system restore point before making changes to your drivers, so you can revert back if needed.
-
Lester Bernard Reyes 73,180 Reputation points Independent Advisor
2026-01-16T23:35:31.9733333+00:00 Hi, I'm Bernard, a fellow Windows user. I'm happy to help!
Just to confirm, are you trying to delete the drivers that are appearing in your Windows Defender? If yes, kindly follow the steps below:
If you see incompatible drivers in Memory Integrity, Run DISM Command and uninstall the incompatible drivers
Press Windows key + X, then click Terminal (Admin) or Windows PowerShell (Admin)
If you cannot see the Published name run this command:
dism /online /get-drivers /format:table
and uninstall using the command below:
pnputil /delete-driver oem5.inf /uninstall /force
Note: This is just an example command wherein the incompatible published name driver is “oem5.inf”, replace it depending on your incompatible driver.
-
Lester Bernard Reyes 73,180 Reputation points Independent Advisor
2026-01-18T08:10:29.62+00:00 Hi, thank you for that information. Have you tried to run dism /online /get-drivers /format:table to check the Published name? If so, can you provide a screenshot of the three drivers?
-