Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
1,439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. @echo off
  2. set /p Y=Enter adb.exe folder path:
  3. cd /d %Y%
  4. adb devices
  5. pause
  6. for %%X in (
  7. "com.android.browser"
  8. "com.android.chrome"
  9. "com.android.email"
  10. "com.android.thememanager"
  11. "com.android.wallpaper.livepicker"
  12. "com.facebook.services"
  13. "com.facebook.system"
  14. "com.facebook.appmanager"
  15.  
  16. "com.google.android.apps.docs"
  17. "com.google.android.apps.maps"
  18. "com.google.android.apps.photos"
  19. "com.google.android.apps.tachyon"
  20. "com.google.android.feedback"
  21. "com.google.android.gm"
  22. "com.google.android.googlequicksearchbox"
  23. "com.google.android.marvin.talkback"
  24. "com.google.android.music"
  25. "com.google.android.talk"
  26. "com.google.android.videos"
  27. "com.google.android.youtube"
  28.  
  29. "com.mfashiongallery.emag"
  30. "com.mi.android.globalpersonalassistant"
  31. "com.mi.dlabs.vr"
  32. "com.mi.globalTrendNews"
  33. "com.mi.global.bbs"
  34. "com.mi.global.shop"
  35. "com.mi.webkit.core"
  36. "com.micredit.in"
  37. "com.milink.service"
  38. "com.mipay.wallet.id"
  39. "com.miui.analytics"
  40. "com.miui.android.fashiongallery"
  41. "com.miui.bugreport"
  42. "com.miui.cloudbackup"
  43. "com.miui.cloudservice"
  44. "com.miui.cloudservice.sysbase"
  45. "com.miui.micloudsync"
  46. "com.miui.hybrid"
  47. "com.miui.hybrid.accessory"
  48. "com.miui.klo.bugreport"
  49. "com.miui.miwallpaper"
  50. "com.miui.msa.global"
  51. "com.miui.player"
  52. "com.miui.screenrecorder"
  53. "com.miui.translationservice"
  54. "com.miui.translation.kingsoft"
  55. "com.miui.translation.xmcloud"
  56. "com.miui.translation.youdao"
  57. "com.miui.touchassistant"
  58. "com.miui.userguide"
  59. "com.miui.videoplayer"
  60. "com.miui.virtualsim"
  61. "com.miui.yellowpage"
  62. "com.netflix.partner.activation"
  63.  
  64. "com.swiftkey.languageprovider"
  65. "com.swiftkey.swiftkeyconfigurator"
  66. "com.xiaomi.discover"
  67. "com.xiaomi.glgm"
  68. "com.xiaomi.joyose"
  69. "com.xiaomi.location.fused"
  70. "com.xiaomi.micloud.sdk"
  71. "com.xiaomi.midrop"
  72. "com.xiaomi.mipicks"
  73. "com.xiaomi.mirecycle"
  74. "com.xiaomi.oversea.ecom"
  75. "com.xiaomi.payment"
  76. "com.xiaomi.providers.appindex"
  77. "com.xiaomi.xmsf" ) do (
  78. adb shell pm uninstall %%X
  79. adb shell pm uninstall --user 0 %%X
  80. )
  81. pause
  82. ::Optional
  83. ::Play Store ==> "com.android.vending"
  84. ::Play Store Service ==> "com.google.android.gms"
  85. ::Gboard ==> "com.google.android.inputmethod.latin"
  86. ::Google Login Service ==> "com.google.android.gsf.login"
  87. ::Android System WebView ==> "com.google.android.webview"
  88. ::Explorer ==> "com.mi.android.globalFileexplorer"
  89. ::Find device ==> "com.xiaomi.finddevice"
  90. ::END-97#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement