10moons USB Devices Driver Download



Where can I download the USB drivers for my device? If drivers were not downloaded automatically by Windows Update, use Device Manager to refresh the driver from Windows Update, or contact the device manufacturer. I’m Moli, your virtual agent. I can help with Moto phone issues. Select the “Let me pick from a list of device drivers on my computer” option. Select “Show All Devices” in the drop-down menu. Click on “Have Disk” option. Enter the storage location for the Google USB driver. Click on “Android ADB Interface” from the list. Confirm the Android USB driver installation by pressing the “Yes. Hardware drivers for Pinnacle / Dazzle. Studio video devices Note: The files contained in this package are hardware drivers only. Beside the driver, a compatible version of Studio is required. USB Driver Updates. Need USB Driver Downloads for Windows 10, Windows 8, Windows 7, Vista and XP?If you are having problems with your USB not working, read the article below to help fix your USB problems.USB issues often, but not always, relate to drivers problems.

  1. 10moons Download
  2. 10moons G10 Digital Drawing Tablet
  3. 10moons Drawing Tablet Driver
-->

For certain Universal Serial Bus (USB) devices, such as devices that are accessed by only a single application, you can install WinUSB (Winusb.sys) in the device's kernel-mode stack as the USB device's function driver instead of implementing a driver.

This topic contains these sections:

Automatic installation of WinUSB without an INF file

As an OEM or independent hardware vendor (IHV), you can build your device so that the Winusb.sys gets installed automatically on Windows 8 and later versions of the operating system. Such a device is called a WinUSB device and does not require you to write a custom INF file that references in-box Winusb.inf.

When you connect a WinUSB device, the system reads device information and loads Winusb.sys automatically.

For more information, see WinUSB Device.

Installing WinUSB by specifying the system-provided device class

When you connect your device, you might notice that Windows loads Winusb.sys automatically (if the IHV has defined the device as a WinUSB Device). Otherwise follow these instructions to load the driver:

  1. Plug in your device to the host system.
  2. Open Device Manager and locate the device.
  3. Select and hold (or right-click) the device and select Update driver software.. from the context menu.
  4. In the wizard, select Browse my computer for driver software.
  5. Select Let me pick from a list of device drivers on my computer.
  6. From the list of device classes, select Universal Serial Bus devices.
  7. The wizard displays WinUsb Device. Select it to load the driver.

If Universal Serial Bus devices does not appear in the list of device classes, then you need to install the driver by using a custom INF.The preceding procedure does not add a device interface GUID for an app (UWP app or Windows desktop app) to access the device. You must add the GUID manually by following this procedure.

  1. Load the driver as described in the preceding procedure.

  2. Generate a device interface GUID for your device, by using a tool such as guidgen.exe.

  3. Find the registry key for the device under this key:

    HKEY_LOCAL_MACHINESYSTEMCurrentControlSetEnumUSB<VID_vvvv&PID_pppp>

  4. Under the Device Parameters key, add a String registry entry named DeviceInterfaceGUID or a Multi-String entry named DeviceInterfaceGUIDs. Set the value to the GUID you generated in step 2.

  5. Disconnect the device from the system and reconnect it to the same physical port.Note If you change the physical port then you must repeat steps 1 through 4.

Writing a custom INF for WinUSB installation

As part of the driver package, you provide an .inf file that installs Winusb.sys as the function driver for the USB device.

The following example .inf file shows WinUSB installation for most USB devices with some modifications, such as changing USB_Install in section names to an appropriate DDInstall value. You should also change the version, manufacturer, and model sections as necessary. For example, provide an appropriate manufacture's name, the name of your signed catalog file, the correct device class, and the vendor identifier (VID) and product identifier (PID) for the device.

Also notice that the setup class is set to 'USBDevice'. Vendors can use the 'USBDevice' setup class for devices that do not belong to another class and are not USB host controllers or hubs.

If you are installing WinUSB as the function driver for one of the functions in a USB composite device, you must provide the hardware ID that is associated with the function, in the INF. You can obtain the hardware ID for the function from the properties of the devnode in Device Manager. The hardware ID string format is 'USBVID_vvvv&PID_pppp'.

The following INF installs WinUSB as the OSR USB FX2 board's function driver on a x64-based system.

Starting in Windows 10, version 1709, the Windows Driver Kit provides InfVerif.exe that you can use to test a driver INF file to make sure there are no syntax issues and the INF file is universal. We recommened that you provide a universal INF. For more information, see Using a Universal INF File.

Only include a ClassInstall32 section in a device INF file to install a new custom device setup class. INF files for devices in an installed class, whether a system-supplied device setup class or a custom class, must not include a ClassInstall32 section.

G10

Except for device-specific values and several issues that are noted in the following list, you can use these sections and directives to install WinUSB for any USB device. These list items describe the Includes and Directives in the preceding .inf file.

  • USB_Install: The Include and Needs directives in the USB_Install section are required for installing WinUSB. You should not modify these directives.

  • USB_Install.Services: The Include directive in the USB_Install.Services section includes the system-supplied .inf for WinUSB (WinUSB.inf). This .inf file is installed by the WinUSB co-installer if it isn't already on the target system. The Needs directive specifies the section within WinUSB.inf that contains information required to install Winusb.sys as the device's function driver. You should not modify these directives.Note Because Windows XP doesn't provide WinUSB.inf, the file must either be copied to Windows XP systems by the co-installer, or you should provide a separate decorated section for Windows XP.

  • USB_Install.HW: This section is the key in the .inf file. It specifies the device interface globally unique identifier (GUID) for your device. The AddReg directive sets the specified interface GUID in a standard registry value. When Winusb.sys is loaded as the device's function driver, it reads the registry value DeviceInterfaceGUIDs key and uses the specified GUID to represent the device interface. You should replace the GUID in this example with one that you create specifically for your device. If the protocols for the device change, create a new device interface GUID.

    Note User-mode software must call SetupDiGetClassDevs to enumerate the registered device interfaces that are associated with one of the device interface classes specified under the DeviceInterfaceGUIDs key. SetupDiGetClassDevs returns the device handle for the device that the user-mode software must then pass to the WinUsb_Initialize routine to obtain a WinUSB handle for the device interface. For more info about these routines, see How to Access a USB Device by Using WinUSB Functions.

The following INF installs WinUSB as the OSR USB FX2 board's function driver on a x64-based system. The example shows INF with WDF coinstallers.

  • USB_Install.CoInstallers: This section, which includes the referenced AddReg and CopyFiles sections, contains data and instructions to install the WinUSB and KMDF co-installers and associate them with the device. Most USB devices can use these sections and directives without modification.

  • The x86-based and x64-based versions of Windows have separate co-installers.

    Note Each co-installer has free and checked versions. Use the free version to install WinUSB on free builds of Windows, including all retail versions. Use the checked version (with the '_chk' suffix) to install WinUSB on checked builds of Windows.

10moons USB Devices Driver Download

Each time Winusb.sys loads, it registers a device interface that has the device interface classes that are specified in the registry under the DeviceInterfaceGUIDs key.

Note If you use the redistributable WinUSB package for Windows XP or Windows Server 2003, make sure that you don't uninstall WinUSB in your uninstall packages. Other USB devices might be using WinUSB, so its binaries must remain in the shared folder.

How to create a driver package that installs Winusb.sys

To use WinUSB as the device's function driver, you create a driver package. The driver package must contain these files:

  • WinUSB co-installer (Winusbcoinstaller.dll)
  • KMDF co-installer (WdfcoinstallerXXX.dll)
  • An .inf file that installs Winusb.sys as the device's function driver. For more information, see Writing an .Inf File for WinUSB Installation.
  • A signed catalog file for the package. This file is required to install WinUSB on x64 versions of Windows starting with Vista.

Note Make sure that the driver package contents meet these requirements:

Phones

  • The KMDF and WinUSB co-installer files must be obtained from the same version of the Windows Driver Kit (WDK).
  • The co-installer files must be obtained from the latest version of the WDK, so that the driver supports all the latest Windows releases.
  • The contents of the driver package must be digitally signed with a Winqual release signature. For more info about how to create and test signed catalog files, see Kernel-Mode Code Signing Walkthrough on the Windows Dev Center - Hardware site.
  1. Download the Windows Driver Kit (WDK) and install it.

  2. Create a driver package folder on the machine that the USB device is connected to. For example, c:UsbDevice.

  3. Copy the WinUSB co-installer (WinusbcoinstallerX.dll) from the WinDDKBuildNumberredistwinusb folder to the driver package folder.

    The WinUSB co-installer (Winusbcoinstaller.dll) installs WinUSB on the target system, if necessary. The WDK includes three versions of the co-installer depending on the system architecture: x86-based, x64-based, and Itanium-based systems. They are all named WinusbcoinstallerX.dll and are located in the appropriate subdirectory in the WinDDKBuildNumberredistwinusb folder.

  4. Copy the KMDF co-installer (WdfcoinstallerXXX.dll) from the WinDDKBuildNumberredistwdf folder to the driver package folder.

    The KMDF co-installer (WdfcoinstallerXXX.dll) installs the correct version of KMDF on the target system, if necessary. The version of WinUSB co-installer must match the KMDF co-installer because KMDF-based client drivers, such as Winusb.sys, require the corresponding version of the KMDF framework to be installed properly on the system. For example, Winusbcoinstaller2.dll requires KMDF version 1.9, which is installed by Wdfcoinstaller01009.dll. The x86 and x64 versions of WdfcoinstallerXXX.dll are included with the WDK under the WinDDKBuildNumberredistwdf folder. The following table shows the WinUSB co-installer and the associated KMDF co-installer to use on the target system.

    Use this table to determine the WinUSB co-installer and the associated KMDF co-installer.

    WinUSB co-installerKMDF library versionKMDF co-installer
    Winusbcoinstaller.dllRequires KMDF version 1.5 or later

    Wdfcoinstaller01005.dll

    Wdfcoinstaller01007.dll

    Wdfcoinstaller01009.dll

    Winusbcoinstaller2.dllRequires KMDF version 1.9 or laterWdfcoinstaller01009.dll
    Winusbcoinstaller2.dllRequires KMDF version 1.11 or laterWdfCoInstaller01011.dll
  5. Write an .inf file that installs Winusb.sys as the function driver for the USB device.

  6. Create a signed catalog file for the package. This file is required to install WinUSB on x64 versions of Windows.

  7. Attach the USB device to your computer.

  8. Open Device Manager to install the driver. Follow the instructions on the Update Driver Software wizard and choose manual installation. You will need to provide the location of the driver package folder to complete the installation.

Related topics

WinUSB Architecture and Modules
Choosing a driver model for developing a USB client driver
How to Access a USB Device by Using WinUSB Functions
WinUSB Power Management
WinUSB Functions for Pipe Policy Modification
WinUSB Functions
WinUSB

Huawei USB Drivers play a crucial role in establishing a valid connection between your Huawei / Honor EMUI smartphone and Computer. These drivers are supported by all Huawei devices that have been launched until now.

Several EMUI users have reached to us complaining about not being able to root their device or even the device doesn’t recognize by your PC for transferring various media files. To let them know, in order to execute such a task one should install USB Drivers on your PC based on your device model number.

With USB Drivers installed on Windows PC, one can ease the task of transferring various media files between your phone and computer. It also allows you to flash Stock Firmware on your Huawei smartphone using the preloader drivers. The following drivers are compatible with each and every Huawei device including the newly launched Honor 9X, Huawei Mate 30 Pro, Honor V20, Huawei P40 Pro Plus, P40 Pro, Huawei Nova 6, Nova 5, Enjoy 20 Pro, and many others.

Related: Download Huawei PC Suite – Latest Version

Download Huawei (Honor) USB Drivers for Windows 10, 8, 7, XP & Vista– EMUI phones

Huawei Phone Model NameUSB DriversHuawei Mate 40, Mate 40 Pro, Mate 40 Pro+DownloadHuawei Mate 30 / Mate 30 Pro (5G) / Mate 30 RSDownloadHuawei Mate 20, Mate 20 Pro, Mate 20 X (5G)DownloadHuawei Mate 10 / Pro / LiteDownloadHuawei Mate 8/ 9DownloadHuawei Mate X / Mate XsDownloadHuawei P40 / P40 Pro / P40 Pro+ / P40 LiteDownloadHuawei P30 / P30 Pro / P30 LiteDownloadHuawei P20 / Pro / LiteDownloadHuawei P10/Plus/LiteDownloadHuawei P Smart + / P Smart ZDownloadHuawei Nova 8, Nova 8 Pro, Nova 8 SEDownloadHuawei Nova 7, Nova 7 Pro, Nova 7 SEDownloadHuawei Nova 6, Nova 6 5G, Nova 6 SEDownloadHuawei Nova 5i / 5i Pro / 7iDownloadHuawei Nova 5 / 5 ProDownloadHuawei Enjoy 20, Enjoy 20 Plus, Enjoy 20 ProDownloadHuawei Enjoy 10, 10 Plus, Enjoy 10SDownload

10moons Download

Huawei Enjoy 9 / 9S / 9eDownloadHuawei Y9/ Y9 Prime 2019DownloadHuawei Y7 Pro / Y9sDownloadHuawei Magic 2DownloadHuawei Mediapad smartphonesDownloadHuawei Universal Drivers [Any Huawei Model]Download

Download Honor USB Drivers for Windows

Honor Phones Model NameUSB DriversHonor 30/ 30 Pro/ 30 Pro+DownloadHonor 20 / 20 ProDownloadHonor X10DownloadHonor 9A/9SDriverDownloadHonor 20 Lite / 20iDownloadHonor 10 / 10 Lite / 10iDownloadHonor 9 / 9 Lite / 9i / 9NDownloadHonor V30 / V30 ProDownloadHonor V20 / View 20DownloadHonor View 10 / V10DownloadHonor 9X / 9X Pro / 9X Lite10moons USB Devices Driver DownloadDownloadDriverHonor 8X / 8X Max / 8CDownloadHonor 30S / 20SDownloadHonor Play 9ADownloadHonor Play 4T / 4T ProDownloadHonor Play 3 / Play 3eDownloadHonor Play 8ADownloadHonor Universal Drivers [Any Model]Download

Note: You can also download Universal Drivers located at the bottom of the table for any Huawei/ Honor device.

Installation: The above USB Drivers are ready to install on your Windows X86 and X64 computers. Follow the below quick steps to learn how to download and install them on your PC:

1. Download from the above table on your PC.

2. Make sure to uninstall all the previously installed USB Driversfor Huawei Honor phones.

10moons G10 Digital Drawing Tablet

3. Restart your PC.

4. Go to the downloaded .zip file and extract the same using Winrar software.

5. Double-tap the extracted file and follow on-screen instructions to start installing the USB Drivers.

6. Once the drivers are successfully installed, you need to reboot your PC again.

7. After the computer boots into normal mode, you will need to connect the device to your PC via USB cable.

8. That’s it! Enjoy moving files between your PC and Huawei phone.

The above Huawei USB Drivers are free to download and are taken from Androidmtk where you can find Drivers of various other company’s smartphones.

Download Huawei USB Drivers for Mac – Android File Transfer

Huawei smartphone users with Mac PC can easily transfer files with the help of the Android File Transfer app. You can refer to the following link to download the app.

  • Download Android File Transfer

If your device model is not listed in the above table, then do let us know in the below comments as we will immediately include your model.

Related:

  • List of Huawei phones eligible to get EMUI 11 [Android 11] update
  • How to Root any Huawei device

Related Posts

10moons Drawing Tablet Driver