# HG changeset patch # User Oleksandr Gavenko # Date 1742941850 -7200 # Node ID 59a720e9b0693411e46cb581454406fe989cf08d # Parent dfbf7d22cbb837ae3b8e0f346c016e7b0ef19258 Removing Chinese Dragon Rise driver in Windows 10 diff -r dfbf7d22cbb8 -r 59a720e9b069 windows-driver.rst --- a/windows-driver.rst Thu Feb 27 18:06:54 2025 +0200 +++ b/windows-driver.rst Wed Mar 26 00:30:50 2025 +0200 @@ -237,6 +237,56 @@ http://msdn.microsoft.com/en-us/library/windows/hardware/ff550863.aspx SetupAPI Device Installation Log Entries +Removing Chinese Dragon Rise driver in Windows 10 +================================================= + +After running installer I get: + + C:\Program Files (x86)\USB Vibration\7906\setup + +With the help of the project UniExtract (which bundles verious extraction executables) I extracted +driver files: + + C:\opt\UniExtract\bin\i6comp.exe x data1.cab + +`AMD64_Driver`. + +It is a Chinese manufacturer: + + Dragon Rise H647906 NTamd64 Driver + Shen Zhen Dragon Rise Macro Technology Limited Company + Guang Dong Province + +I couldn't make vibration works and gamepad is not initialized by Windows for a long delay (~1min). + +So I reverted to original generic Windows drivers. + +Chinese traces are still here: + + C:\Program Files (x86)\USB Vibration\7906\setup + +and mentioned in: + + c:/Windows/INF/setupapi.dev.log + +I found publisher: + + cmd# pnputil /enum-drivers + Published Name: oem59.inf + Original Name: h647906.inf + Provider Name: Dragon Rise + Class Name: Human Interface Devices + Class GUID: {745a17a0-74d3-11d0-b6fe-00a0c90f57da} + Driver Version: 12/05/2007 1.0.0.1 + Signer Name: Shen Zhen Dragon Rise Macro Technology Limited Company + +and eliminated mentioning of the driver in the system: + + cmd# pnputil /delete-driver oem59.inf /uninstall + +https://learn.microsoft.com/en-us/windows-hardware/drivers/install/using-device-manager-to-uninstall-devices-and-driver-packages + Ensuring Permanent Removal. + Driver signing. ===============