Skip to content

Instantly share code, notes, and snippets.

View mbalous's full-sized avatar
🐊

mbalous

🐊
View GitHub Profile
@mbalous
mbalous / samsung_galaxy_debloat.ps1
Last active February 16, 2023 00:08
Uninstalls non-necessary packages from Samsung Galaxy devices running Android 13
param(
[Parameter(Mandatory=$True)]
[System.String]
$adbPath
)
if ([System.IO.File]::Exists($adbPath) -eq $false){
Write-Error "adb executable not found in $($adbPath)"
return;