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
List Apps
adb shell pm list packages -f >> AppList.txt
Uninstall
adb shell pm uninstall -k <PackageName>
Uninstall Example
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

CSharp – Random Password Generator

Posted on May 7, 2014April 9, 2019

Sometimes it’s helpful to simply have a random password. In this small group of code you can define what parameters to use, I have taken the liberty to remove some of the characters that are usually mistaken for a different character like an upper case I and the number 1….

Read More

File Open

Posted on March 11, 2013October 26, 2015

OpenFileDialog1.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Personal) ‘OpenFileDialog1.InitialDirectory = "C:Program Files" OpenFileDialog1.Filter = "Text Files (*.txt)|*.txt|All Files(*.*)|*.*" OpenFileDialog1.FileName = "" OpenFileDialog1.FilterIndex = 1 ‘Check to see if the user clicked the open button If (OpenFileDialog1.ShowDialog() = DialogResult.OK) Then TextBox1.Text = OpenFileDialog1.FileName Try Using sr As New StreamReader(TextBox1.Text) Dim line As String line = sr.ReadToEnd()…

Read More

Ektron – Stop / Start Services

Posted on March 5, 2014October 26, 2015

This should only be done on a development computer, doing so on a production server would not be good. Please note that while stopping the services I’m also setting the start command to “demand” this is also known as “manual”. In setting this command Ektron will no longer automatically start…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • PowerShell - Get Text Encoding Type
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - IIS Remove Site
  • Javascript - Digital Clock with Style

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
  • PowerShell - Get Text Encoding Type
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - IIS Remove Site
  • Javascript - Digital Clock with Style
  • Bleaching Wool using Hydrogen Peroxide
©2025 David Kittell | WordPress Theme by SuperbThemes
David Kittell
  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support