Skip to content

Instantly share code, notes, and snippets.

@onatakduman
Created July 23, 2019 13:59
Show Gist options
  • Save onatakduman/bd3e1b105705073cc8c0e3fb9e65faa1 to your computer and use it in GitHub Desktop.
Save onatakduman/bd3e1b105705073cc8c0e3fb9e65faa1 to your computer and use it in GitHub Desktop.
Android Debug Bridge (ADB) Wi-Fi Connection Script
@echo off
set /p ip="Enter Device IP Adress: "
set port=5555
echo %ip%
adb tcpip %port%
adb connect %ip%:%port%
adb devices
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment