• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps 2 adb processes?

scubaman

Member
I am running under windows 7 pro. When I start adb from a cmd prompt e.g. "adb shell" I see 2 adb processes starting up in task manager. I can exit the shell via ctrl-C and one of the adb processes closes but the other ones remains. Any ideas why?

Regards,
Rich
 
adb has a background server component of itself.

You kill the server process with:
Code:
adb kill-server
 
adb has a background server component of itself.

You kill the server process with:
Code:
adb kill-server
Ah OK - and is this background server the cause of mesages like "adb server is out of date. killing... " when invoking adb in a script?
 
Back
Top Bottom