Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Android ADB List/Uninstall Apps

Posted on September 29, 2014October 26, 2015 By David Kittell
adb shell pm list packages -f >> AppList.txt
adb shell pm uninstall -k <PackageName>
adb shell pm uninstall -k as.adamsmith.etherealdialpad
Originally Posted on September 29, 2014
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Android Code

Post navigation

Previous post
Next post

Related Posts

PowerShell – Test Port

Posted on January 9, 2017

Similar to CMD Telnet this PowerShell will test a port for you based on certain parameters. function Test-Port { Param( [parameter(ParameterSetName=’ComputerName’, Position=0)] [string] $ComputerName, [parameter(ParameterSetName=’IP’, Position=0)] [System.Net.IPAddress] $IPAddress, [parameter(Mandatory=$true , Position=1)] [int] $Port, [parameter(Mandatory=$true, Position=2)] [ValidateSet("TCP", "UDP")] [string] $Protocol ) $RemoteServer = If ([string]::IsNullOrEmpty($ComputerName)) {$IPAddress} Else {$ComputerName}; If ($Protocol -eq…

Read More

Relative Date

Posted on February 27, 2013October 26, 2015

public static string RelativeDate(DateTime theDate) { Dictionary<long, string> thresholds = new Dictionary<long, string>(); int minute = 60; int hour = 60 * minute; int day = 24 * hour; thresholds.Add(60, "{0} seconds ago"); thresholds.Add(minute * 2, "a minute ago"); thresholds.Add(45 * minute, "{0} minutes ago"); thresholds.Add(120 * minute, "an hour…

Read More

JavaScript OnClick – Change Form Value

Posted on February 11, 2014December 23, 2016

<input type="hidden" name="thingy" value="" /> <input type="submit" value="submit1" onclick="document.forms[0].elements[’thingy’].value = ‘submit1 clicked’;return true;" /> <input type="submit" value="submit2" onclick="document.forms[0].elements[’thingy’].value = ‘submit2 clicked’;return true;" /> Originally Posted on February 11, 2014Last Updated on December 23, 2016 All information on this site is shared with the intention to help. Before any source code…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes