TA的每日心情 | 奋斗 2025-3-12 00:54 |
---|
签到天数: 2 天 [LV.1]初来乍到
|
经常用ADB卸载或禁用应用程序,于是自己写了一个Powershell脚本简化操作。
- [CmdletBinding(PositionalBinding=$False)]
- Param(
- [String][ValidateSet("List", "Pull", "Disable", "Enable", "Uninstall")]$Action="",
- [String[]][Parameter(ValueFromRemainingArguments)]$Arguments,
- [String]$Destination = "$Env:SystemDrive\Users\$Env:UserName\Downloads",
- [String[]]$Packages=@()
- )
- $ADBExecutable = "$env:SystemDrive\apps\adb\adb.exe"
- If("" -eq $Action){
- &$ADBExecutable @Arguments
- Return
- }
- If(@("Disable", "Enable", "Pull", "Uninstall") -contains $Action){
- If($Packages.Count -eq 0){
- Write-Output "Specify packages with -Packages"
- Return
- }
- }
- Switch($Action){
- "Disable" {
- $Packages.ForEach({
- &$ADBExecutable "shell" "pm" "disable-user" $_
- })
- Break
- }
- "Enable" {
- $Packages.ForEach({
- &$ADBExecutable "shell" "pm" "enable" $_
- })
- Break
- }
- "List" {
- &$ADBExecutable "shell" "pm" "list" "packages" | ForEach-Object {$_ -replace "package:"}
- Break
- }
- "Pull" {
- $Packages.ForEach({
- $Package = $_
- &$ADBExecutable "shell" "pm" "path" $Package | ForEach-Object {$_ -replace "package:"} | ForEach-Object {
- $SaveAsFilePath = "$Destination\$Package\$(Split-Path -Path $_ -Leaf)"
- New-Item -Path $SaveAsFilePath -ItemType File -Force | Out-Null
- &$ADBExecutable "pull" $_ $SaveAsFilePath
- }
- })
- Break
- }
- "Uninstall" {
- $Packages.ForEach({
- &$ADBExecutable "shell" "pm" "uninstall" "--user" "0" $_
- })
- }
- }
复制代码 |
上一篇:苹果悄悄撤下 iPhone 16“AI Siri”广告,曾承认开发进度不及预期下一篇:大家好
|