ALCATEL HS-USB Modem 9004 Driver Download
All drivers on Windows 7 need to be signed. For some reason unknown to man, Qualcomm doesn't have a signed driver for their products, they leave it up to the OEM's.
- Alcatel Hs-usb Modem 9004 Driver Download 64-bit
- Alcatel Hs-usb Modem 9004 Driver Download Windows 7
- Alcatel Hs-usb Modem 9004 Driver Download 64-bit
Fortunately, the INF file of existing drivers for Gobi can be tweaked to make it work with other QC devices. Here's the results of last weekend's anomolous (and anonymous) hacking...
Jan 10, 2019 Alcatel USB driver is an important part of all Alcatel Smartphones which enable you to easily connect your Alcatel android device with the PC or laptop. What is a Alcatel USB Driver? Alcatel USB Driver is an important part for all android devices which allows you to easily connect any android device or tablet through the personal computer. This Qualcomm QDLoader Driver helps in detecting the device when it is connected to PC in EDL Mode or Download Mode. This Qualcomm HS-USB Driver package is for 64-bit OS, you can download the 32-bit version of the driver here. If you would like to install the drivers manually, download these Qualcomm Drivers.
First, the QC device enumerates as 3 devices, shown below. With no driver installed, it just says Qualcomm MSM.
So, we'll need to add a driver for each interface of the composite QC device. Next question is: what drivers? We can do a little more searching and find some unpublished documents, or better, use a good source like the Linux kernel.
http://lxr.linux.no/#linux+v2.6.37/drivers/usb/serial/qcserial.c
Looking here, we can see it's actually enumerated as 2 serial ports and 1 modem port. Alright, now we have all the information we need. Now it's time to plan our hack... Here's what we're gonna do.
- Find some signed Gobi drivers from any laptop OEM, such as Lenovo, that ships serial and modem drivers
- Modify the inf's for the modem device and the usb serial device .inf files to add the vid/pids we are interested in for our devices
- Point device manager to these drivers

Ok, on to the work... I spent some time searching for gobi drivers, and the ones I found first were from Lenovo. First come, first served, so let's use those. Download the drivers from Lenovo:
http://www-307.ibm.com/pc/support/site.wss/MIGR-69999.html
Run the extractor, and it will extract them to c:drivers. Navigate to this folder
C:DRIVERSWINWWANQLDriverSourceModule Retargetable FolderQCUSB-LenovoDriverPackageQualcommWin64AMD64
This is the driver package portion we are interested it.
Alcatel Hs-usb Modem 9004 Driver Download 64-bit
Being smart, let's look at what was done with the Gobi driver. Looking in the modem and ser .inf files, we can see that interface _00 and _01 are the serial interfaces for diag and NMEA, and interface _02 is the modem interface. So, we need to add the modem interface to the qcmdmlno.inf file, and the serial interfaces for diag and NMEA to qcusbserlno.inf. IMPORTANT NOTE: these interfaces numbers can be different, this just happens to work for the chipset used in my device!Now we modify the .INF's. Let's do the MDM interface first. Edit qcmdmlno.inf (with VIM, of course!). Everywhere we find the PID used, we need to add another entry for our PID. For example, in my .INF file, because my PID is 9002, I added the following entries (see my diff below... for those not familiar with diffs, + is an added line)
***************
*** 24,39 ****
--- 24,42 ----
[ControlFlags]
ExcludeFromSelect = *
[Models]
%QUALCOMM92022% = Modem2, USBVID_05C6&PID_9202&MI_02
+ %QUALCOMM90022% = Modem2, USBVID_05C6&PID_9002&MI_02
[Models.NTamd64]
%QUALCOMM92022% = Modem2, USBVID_05C6&PID_9202&MI_02
+ %QUALCOMM90022% = Modem2, USBVID_05C6&PID_9002&MI_02
[Models.NTia64]
%QUALCOMM92022% = Modem2, USBVID_05C6&PID_9202&MI_02
+ %QUALCOMM90022% = Modem2, USBVID_05C6&PID_9002&MI_02
[Modem2.NT]
CopyFiles=QCUsbDriverFiles
AddReg = All, MfgAddReg, Modem1.AddReg, USB
***************
*** 62,71 ****
--- 65,75 ----
[Strings]
QCUSBSER = 'Lenovo USB Device for Legacy Serial Communication'
QcomSrcDisk = 'Lenovo USB Driver Disk'
QUALCOMM = 'Qualcomm Incorporated'
QUALCOMM92022 = 'Qualcomm HS-USB Modem 9202'
+ QUALCOMM90022 = 'Qualcomm HS-USB Modem 9002'
[All]
HKR,FriendlyDriver,0,Unimodem.vxd
HKR,DevLoader,0,*vcomm
HKR,ConfigDialog,0,modemui.dll

Now let's move on to the USB serial ports for Diag and NMEA. Using the same approach, we will add the _00 and _01 ports the qcserlno.inf file. Below is what I did:
***************
*** 25,44 ****
--- 25,50 ----
[QcomSerialPortlno]
%QcomDevice92010% = QportInstall00, USBVID_05C6&PID_9201
%QcomDevice92020% = QportInstall00, USBVID_05C6&PID_9202&MI_00
%QcomDevice92021% = QportInstall00, USBVID_05C6&PID_9202&MI_01
+ %QcomDevice90020% = QportInstall00, USBVID_05C6&PID_9002&MI_00
+ %QcomDevice90021% = QportInstall00, USBVID_05C6&PID_9002&MI_01
[QcomSerialPortlno.NTia64]
%QcomDevice92010% = QportInstall00, USBVID_05C6&PID_9201
%QcomDevice92020% = QportInstall00, USBVID_05C6&PID_9202&MI_00
%QcomDevice92021% = QportInstall00, USBVID_05C6&PID_9202&MI_01
+ %QcomDevice90020% = QportInstall00, USBVID_05C6&PID_9002&MI_00
+ %QcomDevice90021% = QportInstall00, USBVID_05C6&PID_9002&MI_01
[QcomSerialPortlno.NTamd64]
%QcomDevice92010% = QportInstall00, USBVID_05C6&PID_9201
%QcomDevice92020% = QportInstall00, USBVID_05C6&PID_9202&MI_00
%QcomDevice92021% = QportInstall00, USBVID_05C6&PID_9202&MI_01
+ %QcomDevice90020% = QportInstall00, USBVID_05C6&PID_9002&MI_00
+ %QcomDevice90021% = QportInstall00, USBVID_05C6&PID_9002&MI_01
[QportInstall00.NT]
CopyFiles=QCUsbDriverFiles
AddReg = All00, AddReg
***************
*** 70,75 ****
--- 76,83 ----
QcomSrcDisk = 'Lenovo USB Driver Disk'
QUALCOMM = 'Qualcomm Incorporated'
QcomDevice92010 = 'Qualcomm HS-USB QDLoader 9201'
QcomDevice92020 = 'Qualcomm HS-USB Diagnostics 9202'
QcomDevice92021 = 'Qualcomm HS-USB NMEA 9202'
+ QcomDevice90020 = 'Qualcomm HS-USB Diagnostics 9002'
+ QcomDevice90021 = 'Qualcomm HS-USB NMEA 9002'
Again, this is for the PID's for my device. Your device may have a different PID. Add these to qcserlno.inf (or whichever driver set you hijacked).
Ok, now let's test this. Go through each interface in the Device Manager and update the driver. To do that:
- start device manager
- find the Qualcomm devices listed in the 'other devices' box as shown in the screenshot earlier
- right-click on each device, and select 'Update Driver Software'
- the next dialog box will be 'Update driver Software', select 'Browse my computer for driver software'
- Navigate to where you saved the drivers in 'update drivers' dialog
- Select 'Install this driver anway' when you are prompted about verifying the publisher of the driver
- Repeat for each device in the list (3 times, in my case)
Now let's test it! Right-click on the modem, and select properties, and select the 'Diagnostics' tab. Press the Query Modem button, wait a few seconds, and you should see a response come back that says 'success'. It works!
Here's a link to the drivers + modified INF, zipped up, that some friends were kind enough to host.
http://www.bluelibris.com/files/signed_usb_drivers.zip
Alcatel Hs-usb Modem 9004 Driver Download Windows 7
Qualcomm Snapdragon chipset has been featuring many Android smartphones of many brands like Xiaomi, ZTE, Huawei, Oppo, and so on. Equipped with multicore processor from dual CPUs to quadcore and even hexacore CPUs. However, flashing ROM on a Qualcomm-powered smartphone from a Windows-based computer need a specific driver software. Meet Qualcomm QDLoader HS-USB, a necessary driver software for you to make it easy flashing your favorite ROM via your computer.
Basically, this driver is packed within new version of Mi Flash tool, a software to flash MIUI ROM on Xiaomi devices. However, many other non-Xiaomi devices may need this driver. Therefore, here it is a standalone full Qualcomm QDLoader HS-USB driver download-able via direct link from our server. Choose appropriate version whether 32-bit or 64-bit which depends on which operating system running on your computer. The installer file is compressed within a .zip file so you may need either Winzip or Winrar to extract it. Grab it from the link(s) below:
Download
QDLoader HS-USB Driver_32bit_Setup.zip
How to install? Simply follow Step 1 to Step 10 from this guide.
Remember that Qualcomm does not offer support or drivers to end consumers. Qualcomm sells Integrated Circuits (IC’s) to module manufacturers or other Original Equipment Manufacturers (OEM’s) and under contractual obligations cannot offer end user support. If there are issues regarding configuration and usage of your product, please contact the OEM’s technical support department.
Our suggestion is that you refer to the manufacturer’s website, as they typically offer online technical support pages where software drivers, updates, and other related information can be obtained. You need to contact the OEM of your equipment directly as we are unable to support our chips once the manufacture has modified them for their particular use.
This article was updated: June 24, 2019.
You can get faster updated information on new post via our social media account. Like us on Facebook or subscribe your email to our news letter. Please do not hesitate to send us any query or write a message in the comment section below this article. Share us your opinion or your experience! Thanks..
Alcatel Hs-usb Modem 9004 Driver Download 64-bit

Liked this post? Use the buttons below to share it with your friends..