有什么办法可以在不拔掉usb线的情况下重新连接adb连接

发布于 2024-11-28 12:45:09 字数 44 浏览 0 评论 0原文

有没有什么办法可以让状态为离线的手机变成在线状态,而无需重新插拔usb线?

Is there any way to make a phone whose status is offline to online without replug the usb line?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

七堇年 2024-12-05 12:45:09

只需在记事本中复制粘贴并使用 .bat 扩展名即可。

在此之前,请确保您的 adb.exe 包含在系统路径中,或者将“adb”替换为 adb.exe 的路径,例如:
C:\adt-bundle-windows-x86_64-20131030\sdk\platform-tools\adb Kill-server

@echo off
adb kill-server
adb start-server
adb devices
cls
echo "Android Debug Bridge Restated!!!"
pause

Just copy an paste in notepad with a .bat extension.

Before that make sure your adb.exe is included in system path or alternatively replace the 'adb' with path to adb.exe, For example:
C:\adt-bundle-windows-x86_64-20131030\sdk\platform-tools\adb kill-server

@echo off
adb kill-server
adb start-server
adb devices
cls
echo "Android Debug Bridge Restated!!!"
pause
硬不硬你别怂 2024-12-05 12:45:09

在手机上禁用并再次启用 USB 调试。大部分时间都有效。您还可以尝试在桌面计算机上重新启动 adb 服务器。

Disable and enable again USB debugging on the phone. Works most of the time. You can also try restarting the adb server on the desktop machine.

写下不归期 2024-12-05 12:45:09

有一个“adb reconnect”子命令我今天之前没有注意到:它可能只存在于较新版本的 adb 中。

还有一个设备端版本,但我不太明白本地计算机如何在尚未连接的情况下告诉设备执行此操作,因此也许您可以在设备端 shell 中执行该操作。

There's an 'adb reconnect' subcommand I hadn't noticed before today: it might only be in the newer versions of adb.

There's also a device-side version, but I don't quite see how the local machine can tell the device to do that without already being connected, so perhaps that's something you can execute in a device-side shell.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文