Replies: 1 comment
-
Not sure if this is required, as we can connect Wireless ADB on Android 11+ devices with just QrCode scan now |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
@echo off adb tcpip 5555 adb connect 192.168.1.20
@echo off set IP=192.168.1.20 for /f "tokens=1 delims=/" %%p in ('nmap %IP% -p 37000-44000 ^| findstr /R "tcp"') do ( adb connect %IP%:%%p exit /b ) echo No open ADB port found.
Beta Was this translation helpful? Give feedback.
All reactions