Skip to content

Instantly share code, notes, and snippets.

@asif-mistry
asif-mistry / Remove_MIUI_Bloatware.bat
Created June 9, 2018 18:27
Batch file to remove preinstalled bloated apps in MIUI devices with ADB
@echo off
set /p Y=Enter adb.exe folder path:
cd %Y%
adb devices
pause
for %%X in (
"com.android.browser"
"com.android.chrome"
"com.android.email"
"com.android.thememanager"
@Pulimet
Pulimet / AdbCommands
Last active May 6, 2024 21:19
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader