当你在运行 adb devices 命令时,如果出现 "List of devices attached" 的提示信息,但没有显示任何设备列表 .bat判断设备不在线
时间: 2024-04-08 19:35:12 浏览: 61
WIN7下adb检测不到移动设备的办法,附驱动
如果在运行 `adb devices` 命令时出现 "List of devices attached" 的提示信息,但没有显示任何设备列表,可以通过以下的 .bat 脚本来判断设备是否在线:
```bat
@echo off
adb devices | find /i "device" > nul
if %errorlevel% equ 0 (
echo Device is online.
) else (
echo Device is not online.
)
```
在上面的示例中,我们使用 `adb devices` 命令并通过管道将输出结果传递给 `find` 命令,以查找包含 "device" 的行。如果找到匹配项,则 `%errorlevel%` 的值为 0,表示设备在线。否则,表示设备不在线。
根据需要,你可以在 `if` 和 `else` 块中添加其他的操作或输出内容来满足你的需求。
阅读全文