naveenkumar541
naveenkumar541

Reputation: 21

How to safely kill adb.exe process on windows

My windows PC is having 'n' number of adb.exe running while running my android test suite. This is causing adb to stop in middle

Please tell me How to safely kill this process and ensure remaining test suite execution would continue safely

Upvotes: 2

Views: 9308

Answers (2)

Thiago
Thiago

Reputation: 21

Command for killing the server process is: adb kill-server

Upvotes: 2

Technivorous
Technivorous

Reputation: 1712

save your data in your ide. close it. close all instances of adb. disconnect devices. launch IDE(Eclipse or whatever) let it load. connect device.

it doesnt matter how you close it i force close the adb all the time. try to avoid closing while data is bieng transferred and youll be fine

in other words, CTRL-ALT-DEL the extras

Upvotes: 0

Related Questions