Unable to eject Android phone

2019-03-24 08:20发布

When I try to eject my Android phone from my Windows 8 laptop (using the "Safely Remove Hardware and Eject Media" icon in the task bar) I get a "Problem Ejecting USB Composite Device" pop-up with the message:

Windows can't stop your 'Android ADB Interface' device because a program is still using it. Close any programs that might be using the device, and then try again later.

I have a number of background and Windows processes running, but no apps, so any idea what could be causing this? One of the background processes is "abd (32 bit)", so should I just end that task? Or would it be better to just unplug the device and not worry about ejecting it first?

标签: adb eject
2条回答
等我变得足够好
2楼-- · 2019-03-24 09:03

As Andrew Halloran stated, device can be safely removed if you first end Android Debug Bridge adb. That can be done using the Task Manager enter image description here

Then click "Safely Remove Hardware and Eject Media"

查看更多
贪生不怕死
3楼-- · 2019-03-24 09:11

Android uses ADB to communicate with physical devices and emulators. To properly disconnect your phone first stop the ADB server and then eject your device.

CD C:\Users\<user_name>\AppData\Local\Android\android-sdk\platform-tools
adb kill-server

Then eject your device.

More info here.

查看更多
登录 后发表回答