Skip to content

Expergefactor/ADB-Bloat-Removal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ADB-Bloat-Removal

.BAT script to use the Android Bridge for removal of bloatware

Requirements

Android Bridge

Useful ADB terminal/console commands

List installed packages together with the local storage path

adb shell pm list packages --user 0 -f

List installed packages from Samsung:

adb shell pm list packages 'samsung'

Display local storage path for a specific APK:

adb shell pm path package.apk

Extract application package from device:

adb pull path.apk

Uninstall selected app for default user:

adb shell pm uninstall -k --user 0 [package]

Install an APK (have the APK in the same folder as ADB):

adb install -l -r --user 0 [package]

Re-install a previously uninstalled APK using the internal copy:

adb shell pm install -r -l --user 0 [path]

About

.BAT script to use the Android Bridge for removal of bloatware on Android smartphones

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published