How To Uninstall Usb Controller Driver

It lets you change hardware settings, identify device drivers for each device, view and change settings and properties, and install, uninstall, update, roll back, enable, disable the drivers. How to Uninstall and Re-install USB Drivers on Windows 7 (PS2 Controller Issues). Thread Modes. How to Uninstall and Re-install USB Drivers on Windows 7 (PS2 Controller Issues) KaraZorEl Newbie. In my case, I had to uninstall and reinstall all the drivers. Fortunately, there are only two. Step 3: Double-click on one of the Intel. How to Uninstall USB Drivers in Windows XP - Steps Open the control panel from the 'Start' menu or from 'My computer'. Open the 'System' button, when using the classic layout, which can be set from the left menu bar. Click on the 'Hardware' tab. Open the 'Device Manager'. Find your USB drivers. Mar 29, 2013  Uninstall Xbox 360 Controller Driver? Discussion in 'Mac Apps and Mac App Store' started by mahger, Mar 4. How to uninstall the Xbox 360 controller driver from TattieBogle. Still there is an option usb device on your MBP has some differences in driver. From my perspective. To uninstall a device by using Device Manager, follow these steps: Start Control Panel, click Hardware and Sound, and then click Device Manager. Expand the node that represents the type of device that you want to uninstall, right-click the device entry, and click Uninstall. On the Confirm Device. When you find the program Realtek USB Ethernet Controller Driver, click it, and then do one of the following: Windows Vista/7/8: Click Uninstall. Windows XP: Click the Remove or Change/Remove tab (to the right of the program).

I am developing a Windows C++ application that drives a motor controller that is plugged on USB.This controller relies on Ftdibus drivers and it works fine on my PC.However, on a test computer it used to work but since I messed up with the Ftdi drivers as soon as I plug the controller, I get a BSoD (mentioning Ftdibus).I would like to cleanup the drivers, but:

  • they do not appear in Windows 'uninstall programs'
  • I can't right click on the controller in the device manager and chose 'uninstall' because I can't plug the controller (BSoD)
  • I tried nirsoft tool that has an option to uninstall devices but it won't work

I'm clueless, how could I clean up that mess?

PS: if anyone has documentation regarding how drivers are bound to an USB port number, I would enjoy reading on the subject

Julien M
Julien MJulien M
3521 gold badge7 silver badges26 bronze badges
Windows

How To Uninstall Intel Usb 3.0 Extensible Host Controller Driver

2 Answers

If this is Vista and later, the supported method for deleting a driver package is with pnputil:

Just deleting the service is sort of a bad idea, that's not the only thing that installing a driver puts in the registry.

I missed the second part of your post about how Windows binds drivers to USB devices. There's a nice description of it here:

If you need more details feel free to contact me (I specialize in Windows drivers for a living :))

snoonesnoone

How I do it is one of three ways:

  1. Go into Device Manager, select 'view' menu and select the 'Show hidden devices'. Find your device description and select the 'uninstall' menu option. [easy]

  2. You can use the Service Control Manager command line 'SC' to delete the device driver from the registry. You will need to know the installed driver name. [medium]

  3. Manually delete the driver setup in the registry. Using regedit, you can delete the registry entries for the driver. Drivers registry setup lives under 'HKEY_LOCAL_MACHINESYSTEMCurrentControlSetservices'. Find the driver name key and delete it. [hard]

Shane PowellShane Powell
10.2k2 gold badges39 silver badges50 bronze badges

Not the answer you're looking for? Browse other questions tagged windowshardwareuninstalldrivers or ask your own question.

I have an old USB device that is not recognized by windows 7, so I grabbed the device driver for the chip that handles the USB communications. After I modified it I used it to install for the device. Stupid I know, but now I need to get rid of it.

Below is the code from the inf setup file. This does not have the VID and PID that I changed. I need to reverse all the changes it made.

B4wiiB4wii

3 Answers

Another option (the Microsoft way, without doing random unknown deletings in the registry) is to start CMD as 'run as admin' and then list all installed drivers in the Windows 7 driver store via:

pnputil -e

if this caused a longer list you can pipe that into a file via:

pnputil -e > C:driverexport.txt

If you have found now the driver you need to remove use the following comand:

pnputil.exe -d OemNUMBER.inf

replace NUMBER with your number from your example. You might try to use -F to force the uninstallation. Once a reboot is done the driver should be gone.

This might be also usefull to delete old drivers and get some HD space back.

BastianWBastianW
1,9935 gold badges21 silver badges33 bronze badges

If you have installed a driver for a device and you want to remove it (and the driver store) just plug in your device. Open Device Manager, right click the device and select Uninstall. There will be a box that says 'Remove driver software' - check this box and Uninstall the driver. This should remove it from the driver store and uninstall the device from the registry.

If all drivers for the device has been removed you should be able to plug it in and see that no driver loads for the device. If it does there could be multiple versions in your driver store and you go through the same steps until Windows doesn't recognize the device.

Note that the SYS file will remain in the C:WindowsSystem32drivers directory per policy, but if all devices and installations are removed that use it you can safely delete this driver as well.

PrestonPreston
2,1751 gold badge12 silver badges25 bronze badges

While the steps mentioned in answers above may be correct, this is a significantly easier method to do it:

How To Uninstall Usb Controller Drivers

Go to Device Manager or alternatively run the command

devmgmt.msc

Right-click the device you need to uninstall and go to Properties. Select the Details tab and then select INF Name from the drop-down list

Once you have the INF Name type in this command in a command window opened with Admin privileges

pnputil.exe -d INFName.inf

if you face issues try forced deletion

pnputil.exe -f -d INFName.inf

t4u51ft4u51f

Not the answer you're looking for? Browse other questions tagged windowswindows-7usbdriverinf or ask your own question.