我怎么办?答联想IdeaPad S6000连接到Windows 7(64位)连接到、IdeaPad、Windows

2023-09-08 09:29:47 作者:多年以后

Lonovo似乎并不为亚行接口和谷歌的USB驱动程序不支持联想IdeaPad任何驱动程序。我如何获得安装了ADB接口?

Lonovo does not appear to provide any drivers for the ADB Interface and Google's USB Drivers do not support the Lenovo IdeaPad. How do I get the ADB Interface installed?

推荐答案

您首先需要了IdeaPad的设备ID。您可以在设备管理器中找到这些,通过右键在其他设备点击的IdeaPad S6000。选择详细信息选项卡,选择硬件ID属性。在我的情况下,这些是两个值(虽然搜索这些步骤在网上引发了很多其他细微变化):

You will first need the Device IDs of the IdeaPad. You can find these in the Device Manager, by right clicking on "IdeaPad S6000" under "Other Devices". Select the "Details" tab and choose the "Hardware Ids" Property. In my case these were the two values (though searching for these steps online has led to many other slight variations):

USB\VID_17EF&PID_75E0&REV_0255&MI_01
USB\VID_17EF&PID_75E0&MI_01

然后,使用在 Android的SDK ( andriod-发现了谷歌的USB驱动程序SDK /演员/谷歌/ usb_driver )查找文件 android_winusb.inf 。有(设备驱动程序,一个(第一批)的32位操作系统( [Google.NTx86] )和一个64位操作系统定义的两节 [Google.NTamd64] )。你将会看到一系列谷歌参考器件(歌Nexus One,Nexus Q的等等)中的这些设备的末尾添加以下三行:

Then using the Google USB Drivers found in the Android-SDK (andriod-sdk/extras/google/usb_driver) look for the file android_winusb.inf. There are two sections defined for device drivers, one (the first) for 32-bit operating systems ([Google.NTx86]) and one for 64-bit operating systems ([Google.NTamd64]). You will see a series of Google Reference devices (Nexus One, Nexus Q etc.) At the end of these devices add the following three lines:

;IdeaTab S6000
%CompositeAdbInterface%     = USB_Install, USB\VID_17EF&PID_75E0&REV_0255&MI_01
%CompositeAdbInterface%     = USB_Install, USB\VID_17EF&PID_75E0&MI_01

保存并退出,然后尝试安装谷歌的OEM USB驱动程序。有了您的硬件ID到位的Windows 7应该认识到驱动程序,然后该设备。我有我的Windows 7桌面上测试这一点,现在Appcelerator的钛和我的Andr​​oid果冻豆平板电脑都完美地融合在一起谈论:)我希望这可以帮助其他人。

Save and exit, then attempt to install the the Google OEM USB Driver. With your Hardware Ids in place Windows 7 should recognized the driver and then the device. I have tested this on my Windows 7 desktop and now Appcelerator Titanium and my Android Jelly Bean tablet are talking perfectly together :) I hope this can help anyone else.