有什么办法可以在不拔掉usb线的情况下重新连接adb连接
有没有什么办法可以让状态为离线的手机变成在线状态,而无需重新插拔usb线?
Is there any way to make a phone whose status is offline to online without replug the usb line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需在记事本中复制粘贴并使用 .bat 扩展名即可。
在此之前,请确保您的
adb.exe
包含在系统路径中,或者将“adb”替换为 adb.exe 的路径,例如:C:\adt-bundle-windows-x86_64-20131030\sdk\platform-tools\adb Kill-server
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
在手机上禁用并再次启用 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.
有一个“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.