1

我尝试通过设备管理器安装。将手机连接到笔记本电脑后,我在设备管理器的“其他设备”部分中获得了“Celkon 集成 GSM 手机”的链接。我右键单击并单击'uddate驱动程序'和'从指定位置安装'并找到'inf'文件(usb2ser_2kXP.inf),但消息是'无法安装此硬件,'向导找不到必要的软件'。 .

那么,我必须如何编辑“inf”文件?

4

4 回答 4

4

右击我的电脑-->然后进入管理-->然后右键单击它并选择更新设备驱动程序-->在设备管理器的其他设备中选择您的设备-->

步骤1

选择手动搜索设备而不是自动搜索。

第2步

选择显示所有设备。

第 3 步

要手动定位 ADB 接口的设备驱动程序,请单击从磁盘安装。

第4步

点击“浏览”

在此处输入图像描述

去sdk-->extra-->google-->usb driver-->然后点击android_winusb.inf-->点击open

Check your SDK Manager whether your 'Google USB driver' is installed or not.
Make sure that your environment variables are set up:

ANDROID_HOME : %LOCALAPPDATA%\Android\Sdk

PATH: ;%LOCALAPPDATA%\Android\Sdk\platform-tools;%LOCALAPPDATA%\Android\Sdk\tools

在此处输入图像描述

Android ADB 接口将被识别。

第 7 步

检查错误是否已消除,并且您的 ADB 设备接口现在应该可以工作。

于 2016-03-13T08:37:46.403 回答
2

http://adbdriver.com/upload/adbdriver.zip

  • 下载 adb 驱动安装程序并打开
  • 将手机连接到 PC(确保 USB 调试已启用)
  • 无论是否安装,手机都会列出驱动程序状态
  • 只需单击安装,如果有任何弹出窗口询问,则允许安装驱动程序并等待一段时间
  • 安装驱动后,将手机重新连接电脑

注意:此驱动程序可以在任何 Android 设备上运行。

于 2016-03-13T08:22:03.473 回答
1

我之前也有同样的问题,但我只需按照以下步骤轻松解决:

*connect your android phone in a debugging mode

(要启用调试模式,进入设置,向下滚动关于手机,向下滚动点击七次内部版本号,它将自动启用开发者选项,打开开发者选项并检查 USB 调试)

下载通用 ADB 驱动安装程序

*选择 Adb 驱动安装程序(通用)

*install it 
*it will automatically detect your android device(any kind of brand)

*选择设备并安装

于 2013-12-13T09:52:07.583 回答
0
STEP A:
Get the MTK6573 ADB driver from
h*t*t*p://chinamobiles.org/downloads/zap/MT6573ADBdrivers.zip
And extract it to a folder. The MTK6573 ADB interface driver works fine on MTK6575 based devices.

STEP B:
Get the VENDOR and DEVICE Ids of your Celkon A97 phone.
To get it,
Connect the phone to your PC. Open Device Manager. Look for Celkon incorporated GSM handset under Other Devices
Open 'Celkon incorporated GSM handset' -->Properties-->Details tab.
Under property dropdown menu, Select Hardware IDs
and note the 4 digit VID_XXXX and PID_YYYY values. These are the phones Hardware iDs.

STEP C:
Open the file android_winusb.inf using your favourite text editor.
Add three lines after this line.

[Manufacturer]
%ProviderName% = Google, NTx86, NTamd64

The three lines are
; CELKON A97
%CompositeAdbInterface% = USB_Install, USB\VID_XXXX&PID_YYYY&MI_01
;

Replace XXXX, YYYY with Vendor and Device IDs of your phone.
Save the file.


STEP D:
Once you update these values, update the driver from the device manager by pointing to the folder of android_winusb.inf.
Now you should see a ADB interface device in the device manager.
于 2013-01-28T10:12:40.253 回答