6

I am trying to hot spot my htc evo. When I click on PDAnet, it tells me that I have to terminate adb.exe. how do i terminate adb.exe. thank

ale
  • 19,723
  • 34
  • 110
  • 159
  • 1
    ctrl+alt+del, look for adb and then terminate process. That should do the trick. –  May 08 '11 at 02:44

1 Answers1

8

adb kill-server

You need to run that from wherever you installed the android tools.

Femi
  • 299
  • 1
  • 3
  • 2
    This is the preferred way rather than killing it from the task manager. There's not a lot of shut-down logic, but it's always better to do things in a calm manner if you can. Just create a .bat file to do this and stick it some place convenient. – Eric Cloninger May 08 '11 at 03:47