1、启动adb服务 adb start-server 2、终止adb服务 adb kill-server 3、进入adb运行环境(Android 系统内核是 Linux,所以许多 Linux 系统的命令在 Android 系统中都可以使用)adb shell 4、获取帮助 里面有adb的各种命令和参数的介绍 adb help 5、查看adb版本 adb version 要进行屏幕设置的话需要以下几...
https://upgrade.down.sandai.net/thunder11/XunLeiSetup11.3.2.1832up.exe 2、打开WSA设置中的开发人员模式。 3、下载ADB(https://dl.google.com/android/repository/platform-tools-latest-windows.zip)。 4、解压ADB,在解压后的目录右键选择”在Windows终端中打开“。 5、输入”adb connect 127.0.0.1:58526“(...
在https://store.rg-adguard.net网站,输入https://www.microsoft.com/store/productId/9P3395VX91NR选择slow通道,点击对勾按钮,之后下载1G多的那个文件(在网页最下方,Msixbundle格式),然后管理员身份运行了Powershell,执行Add-AppxPackage -Path 下载的文件.Msixbundle即可。 W S A 安装包 for win11,请使用迅雷1...
WSA离线安装包可以从Windows中的微软应用商店中提取,然后通过命令行安装。 1.打开https://store.rg-adguard.net; 2.复制WSA在微软应用商店的地址:Windows Subsystem for Android™ with Amazon Appstore - Microsoft Store Apps,粘贴至URL输入框中,选择 Slow,点击对勾; 3.在最下方找到文件:MicrosoftCorporationII.Wi...
https://upgrade.down.sandai.net/thunder11/XunLeiSetup11.3.2.1832up.exe 2、打开WSA设置中的开发人员模式。 3、下载ADB(https://dl.google.com/android/repository/platform-tools-latest-windows.zip)。 4、解压ADB,在解压后的目录右键选择”在Windows终端中打开“。
Enter the following commands one by one into the Windows PowerShell to run the ADB daemon: a. cmd b. adb devices Allow the debugging accesswhile the USB debugging prompt window appears on your Android device. Re-enter the command:adb devices. ...
比如你希望将Android子系统安装在C:\WSA\文件夹下,那么就把msibundle文件移到该文件夹中,并在PowerShell中运行以下命令: cdC:\WSA\ 再输入以下命令完成Android子系统的安装: Add-AppxPackage MicrosoftCorporationII.WindowsSubsystemForAndroid1.8.32837.0_neutral~_8wekyb3d8bbwe.msixbundle ...
adb -s usb:3-1.2 shell -t ID use device with given transport id -H name ofadb server host[default=localhost] -P port of adb server [default=5037] -L SOCKET listen on given socket for adb server [default=tcp:localhost:5037]
Right-click an empty area of the File Explorer window and chooseOpen in Terminal. If you have an older version of Windows without Windows Terminal, you need to holdShifton the keyboard while right-clicking, then chooseOpen PowerShell window here. ...
所以如果 adbd 以普通权限执行,有些需要 root 权限才能执行的命令无法直接用adb xxx执行。这时可以adb shell然后su后执行命令,也可以让 adbd 以 root 权限执行,这个就能随意执行高权限命令了。 命令: adb root 1. 正常输出: restarting adbd as root