Facebook
From Colorant Pudu, 3 Years ago, written in Bash.
This paste is a reply to Untitled from Burly Wolf - go back
Embed
Viewing differences between Untitled and Re: Untitled
#!/bin/bash

packages_to_uninstall=(
  "com.microsoft.skydrive" \
  "com.microsoft.office.excel" \
  "com.microsoft.office.word" \
  "com.microsoft.office.powerpoint" \
  "com.microsoft.office.outlook" \
  "com.microsoft.office.officehubrow"
  "com.microsoft.appmanager" \
  "com.facebook.system" \
  "com.facebook.appmanager" \
  "com.facebook.services" \
  "com.facebook.katana" \
  "com.touchtype.swiftkey" \
  "com.swiftkey.swiftkeyconfigurator" \
  "com.linkedin.android"
)

for package in "${packages_to_uninstall[@]}"
do
   echo "Uninstalling $package..."
   adb shell pm uninstall -k --user 0 $package
done