|
 
|
[操作疑難] 識刷小米的高手請入來,Adb小米手機無win7的driver,求解決方法
想用adb 去處理多餘的apk 但係用adb devices 揾唔到device ,問題是無
Driver 在 win7 所以detect唔到,求解決方法
我是參考以下的教學時遇到這個問題
Method#2 ADB command line
To be able to execute ADB commands, you must download and set up the latest SDK Platform Tools on your computer.
Extract the downloaded ‘platform-tools-latest-windows.zip‘ and open the folder.
Launch the Command Prompt via the Windows context menu by pressing the Shift key + Right-click button on the mouse.
Now type the following command in the cmd window and Allow USB debugging to authorize ADB when prompted.
adb devices
allow usb debugging on xiaomi - If you see the ‘list of attached devices’ message, it means your Xiaomi or Redmi phone is successfully connected.
Now, execute the command
Code:
adb shell
When you get your phone’s codename on the cmd screen, run the command mentioned. Don’t forget to replace <package name> with the package name of the system app you want to uninstall just check The List
PHP:
pm uninstall --user 0 <package name> |
|
|
|