Skip to content

Instantly share code, notes, and snippets.

@gmoraiz
Last active October 24, 2024 00:50
Show Gist options
  • Save gmoraiz/6e16ffdc03c58813760754039c0bf8f7 to your computer and use it in GitHub Desktop.
Save gmoraiz/6e16ffdc03c58813760754039c0bf8f7 to your computer and use it in GitHub Desktop.
remove emulator-5562 offline from adb devices
#Native Instruments software uses PORT 5562 ON TCP (NTKDaemon)
#Run CMD as Administrador and write:
netstat -ano | findstr :5563
taskkill /PID <PID> /F
@gmoraiz
Copy link
Author

gmoraiz commented Jun 14, 2019

Remove 5562 emulator offline from ADB

@Phoenix124
Copy link

Phoenix124 commented Dec 18, 2019

For unix

kill -9 $(lsof -i :5563)

@jc911
Copy link

jc911 commented May 14, 2020

thanx!!!

@xingyze
Copy link

xingyze commented Sep 4, 2020

thanks!!

@siyaoL1
Copy link

siyaoL1 commented Jul 20, 2022

Thank you so much

@CODEGOAT007
Copy link

Is this going to screw my piano's ability to connect to my computer?

@gmoraiz
Copy link
Author

gmoraiz commented Dec 12, 2023

Is this going to screw my piano's ability to connect to my computer?

No. In the worst case, you just restart your computer.

@chrisdugne
Copy link

awesome, thank you

@raisingdibar
Copy link

Love to see a bunch of Android devs who also make music ;)

@tom-stringer
Copy link

Searched for days for this, just needed to unplug my keyboard when developing. Cheers

@hatrd
Copy link

hatrd commented Oct 24, 2024

adb kill-server may work also.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment