lastest update: 2023-1-6 Preface:Some applications called “XiaomiStore”, we can’t remove it from our smartphone. The “adb”(Android Debug Bridge) will make it.
Tips: This is my first blog in English, whose mistakes could be sent to cww.lhame@foxmail.com
.
Firstly, download adb in windows10.
Visit this page, and download it.(Recommended in C:\Users\ _*usename*_ \adb
)
\adb
is a directory created by yourself, you will get a “zip flie” called platform-tools_r33.0.1-windows.zip
if you click the link above.
Then you should unzip it in this path, the directory should be like C:\Users\LHame\adb\platform-tools
, where you can find the file adb.exe
.
Then, add it to environment variable.
On Windows, just follow these steps:
- Copy the path where you have saved the
platform-tools
, for exampleC:\Users\LHame\adb\platform-tools
. - Right click
This computer
, choseproperties
(NoThis computer
in your Desktop? Just right click on your desktop and chose thePersonalize
,themes
on the left,Desktop Icons Settings
upper right, chose thecomputer
) - Click
Advanced system settings
on the right - Click
environment variable
on the bottom - Chose the
path
in thesystem variable
, then clicknew
,add
, paste what you copy before - Finally, click the
OK
to save changes.
Check if the adb is OK.
Open a terminal, a software we can do some interesting jobs with it, which can be installed by serching words including “terminal” in Microsoft Store. What’s more, you can chose press Win
+ R
in keyboard to open the CMD
, alse called command prompt
.
Then ,type adb version
and you should get some messages like here:
|
|
changes for your smartphone
This page will tell you how to do.
(Emmmm, I am a lazy boy, so I just link a post from Bing. Also many posts about how to unlock the USB-debug options for your mobile can be found by Bing. )
Now, evething is OK.
Get start.
Type adb devices
to list the infomation your smartphone, your will get message as:
|
|
You can not make sure your mobile is OK until you have gotten the code of your device.(must be a number)
list the applications
Type
|
|
for example:
|
|
uninstall what you want to remove
Type
|
|
for example: I want to remove a application called “XiaomiPayment”, we can find it from above list.
|
|
The application has been uninstalled successfully when you get “Success”.
Of course, you shouldn’t remove some important packages(apps) for the Android.(Bing or Google for more info.)