Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to eject Android phone [closed]

Tags:

android

adb

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?

like image 778
Mark Cramer Avatar asked Apr 18 '13 17:04

Mark Cramer


People also ask

How do I eject my Android phone from my PC?

Scroll to Windows Explorer: Safely Remove Hardware and Eject Media and turn it on. If this doesn't work, make sure the device has stopped all activity like copying or syncing files. Select Start > Settings > Devices. Select the device, and select Remove device.

How do you fix a frozen android touch screen?

Restart your phone If your phone is frozen with the screen on, hold down the power button for about 30 seconds to restart.


2 Answers

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.

like image 163
Andrew Halloran Avatar answered Oct 12 '22 16:10

Andrew Halloran


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"

like image 8
user2814778 Avatar answered Oct 12 '22 18:10

user2814778