ブロートウェアの削除ツールなのか?

Create a De-Bloat Script and Auto APK Installer | xda-developers 

中身をみてみると。

Eag-debloat $ tree .
.
├── AdbWinApi.dll
├── AdbWinUsbApi.dll
├── Debloat.bat
├── Instructions.txt
├── adb.exe
└── fastboot.exe

batをみる。

@ echo off
CLS
echo         Welcome to Anti-Bloat Tool For Galaxy R!
echo                 by eaglerazor123 @xda-devs!
echo  .              First Read Instructions Text! 
echo  ..
echo  ...
echo  ....
echo  .....
echo Rebooting to Recovery!.Stay Calm!
adb reboot recovery
ping -n 7 127.0.0.1 > nul
echo Press any key when your phone is booted into Clockworkmod Recovery
pause
ping -n 8 127.0.0.1 > nul
adb shell mount /system
echo Would you like to remove Samsung Shit? 
echo [Type y for YES, n for NO]
set input=
set /p input=
if %input%==y goto y
if %input%==n goto n
if %input%==Y goto y
if %input%==N goto n
:n
goto p
:y
echo Starting ADB
@ echo off
adb shell rm /system/app/BuddiesNow.apk
adb shell rm /system/app/BuddiesNow.odex
adb shell rm /system/app/cooldict.apk
adb shell rm /system/app/Divx.apk
adb shell rm /system/app/Divx.odex
adb shell rm /system/app/DualClock.apk
adb shell rm /system/app/DualClock.odex
adb shell rm /system/app/ImgoTV.apk
adb shell rm /system/app/iReader.apk
adb shell rm /system/app/Kies.apk
adb shell rm /system/app/Kies.odex
adb shell rm /system/app/KiesAir.apk
adb shell rm /system/app/kieswifi.apk
adb shell rm /system/app/kieswifi.odex
adb shell rm /system/app/Kobo.apk
adb shell rm /system/app/MediaHub.apk
adb shell rm /system/app/MediaHub.odex
adb shell rm /system/app/MiniDiary.apk
adb shell rm /system/app/MiniDiary.odex
adb shell rm /system/app/Memo.apk
adb shell rm /system/app/Memo.odex
adb shell rm /system/app/PolarisOffice.apk
adb shell rm /system/app/PostIt.apk
adb shell rm /system/app/PostIt.odex
adb shell rm /system/app/Protips.apk
adb shell rm /system/app/Protips.odex
adb shell rm /system/app/MinimalHome.apk
adb shell rm /system/app/MinimalHome.odex
adb shell rm /system/app/MobilePrint.apk
adb shell rm system/aap/MobilePrint.odex
adb shell rm /system/app/MobileTrackerEngineTwo.apk
adb shell rm /system/app/MobileTrackerEngineTwo.odex
adb shell rm /system/app/MobileTrackerUI.apk
adb shell rm /system/app/MobileTrackerUI.odex
adb shell rm /system/app/ReadersHub.apk
adb shell rm /system/app/ReadersHub.odex
adb shell rm /system/app/samsungappswidget.apk
adb shell rm /system/app/samsungappswidget.odex
adb shell rm /system/app/SocialHub.apk
adb shell rm /system/app/SocialHub.odex
adb shell rm /system/app/TrimApp.apk
adb shell rm /system/app/TrimApp.odex
adb shell rm /system/app/Zinio.apk
adb shell rm /system/app/SamsungAppsUNA3.apk
adb shell rm /system/app/SamsungIM.apk

goto p
:p
echo Would you like to remove the Touchwiz Launcher (Y for Yes / N for NO)
set input=
set /p input=
if %input%==y goto r
if %input%==n goto t
if %input%==Y goto r
if %input%==N goto t
:r
adb shell rm /system/app/TouchWiz30Launcher.apk
adb shell rm /system/app/TouchWiz30Launcher.odex
goto t
:t
echo Would you like to remove the Samsung Widgets? (Y for Yes / N for NO)
set input=
set /p input=
if %input%==y goto e
if %input%==n goto f
if %input%==Y goto e
if %input%==N goto f
:e
adb shell rm /system/app/SamsungAppsUNA3.apk
adb shell rm /system/app/SamsungWidget_News.apk
adb shell rm /system/app/SamsungWidget_News.odex
adb shell rm /system/app/SamsungWidget_ProgramMonitor.apk
adb shell rm /system/app/SamsungWidget_ProgramMonitor.odex
adb shell rm /system/app/SamsungWidget_StockClock.apk
adb shell rm /system/app/SamsungWidget_StockClock.odex
adb shell rm /system/app/SamsungWidget_WeatherClock.apk
adb shell rm /system/app/SamsungWidget_WeatherClock.odex
goto k

:k
echo It is reccomended that you reboot your phone now. Would you like to?
echo (Y for Yes / N for NO)
echo [please wait as this may take a minute]
set input=
set /p input=
if %input%==y goto b
if %input%==n goto o
if %input%==Y goto b
if %input%==N goto o
:b
echo [please wait while ADB reboots your phone]
adb reboot
goto o
:o
echo Bloatware Removed! 
echo.
echo..
echo Close The Window To Skip Auto Install!
echo Press Continue For Auto Apk Installer And Make Sure You Reconnet USB Cable Before Pressing Continue!
pause


@ECHO off
title Auto APK Installer

:Start
cls
echo 1. Install APK's
echo 2. Quit
set /p choice=I choose (1,2):
if %choice%==1 goto apkinstall
if %choice%==2 exit

:apkinstall
cls
echo Running Install Script 
FOR %%n in (*.apk) DO adb install %%n
echo Done!
pause
exit

apkインストーラというほどでもない実質1行のスクリプト

いえるのは、日本だけでなく、海外有名ベンダーもクソなアプリを
たくさんいれこんでいるということか。