1.下载abd
ADB Download - Get the latest version of ADB and fastboot

2.手机打开开发者选项
3.手机接电脑打开USB调试
4.下载MT管理器查看系统包名
D:\1.LFD\ADB\platform-tools-latest-windows\platform-tools>adb shell
 adb.exe: no devices/emulators found  这边是因为接了电脑,但是没开USB调试
D:\1.LFD\ADB\platform-tools-latest-windows\platform-tools>netstat -ano | findstr :5037
   TCP    127.0.0.1:5037         0.0.0.0:0              LISTENING       18704
D:\1.LFD\ADB\platform-tools-latest-windows\platform-tools>adb kill-server
D:\1.LFD\ADB\platform-tools-latest-windows\platform-tools>adb start-server
 * daemon not running; starting now at tcp:5037
 * daemon started successfully
D:\1.LFD\ADB\platform-tools-latest-windows\platform-tools>adb shell
 adb.exe: no devices/emulators found
D:\1.LFD\ADB\platform-tools-latest-windows\platform-tools>adb shell
 HNLSA:/ $ pm uninstall -k --user 0 com.huawei.appmarket    这边是删除荣耀应用商店,我去,删除失败,荣耀偷偷改了包名
 Failure [not installed for 0]
 1|HNLSA:/ $ pm uninstall -k --user 0 com.huawei.appmarket
 Failure [not installed for 0]
 1|HNLSA:/ $ pm uninstall -k --user 0 com.hihonor.appmarket   这个才是荣耀应用商店的包名
 Success
 HNLSA:/ $ pm uninstall -k --user 0 com.huawei.fastapp  删除快应用中心
 Success
 HNLSA:/ $ pm uninstall -k --user 0 com.hihonor.quickengine  删除荣耀快应用中心
 Success
 HNLSA:/ $