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

Install Apps From SDCard

Posted on June 25, 2013October 26, 2015 By David Kittell
cd /sdcard/apk
for app in *.apk; do pm install -r $app; done
Originally Posted on June 25, 2013
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

OpenSSL – Decode/Read CSR

Posted on January 5, 2018

Sometimes you when a SSL CSR isn’t named properly you need to get the details of it, the code below will help. Note: Depending on version and OS the placement numbers (-f5 for example) may be slightly off. #!/bin/sh # ReadSSLCSR.sh # # # Created by David Kittell on 1/5/18….

Read More

Allow Root SSH

Posted on August 16, 2016August 16, 2016

NOTE: Typically not a great idea for permanent production systems cat /etc/ssh/sshd_config | grep PermitRootLogin sed -i "s|PermitRootLogin no|PermitRootLogin yes|" /etc/ssh/sshd_config service sshd restart cat /etc/ssh/sshd_config | grep PermitRootLogin cat /etc/ssh/sshd_config | grep PermitRootLogin sed -i "s|PermitRootLogin yes|PermitRootLogin no|" /etc/ssh/sshd_config service sshd restart cat /etc/ssh/sshd_config | grep PermitRootLogin All information…

Read More

Microsoft Azure SQL – Create SQL User

Posted on October 13, 2016

In this example I create a Read-Only user but this will work with any access as long as you change the db_datareader access role to what you need In SQL Management Studio open a “New Query” with [master] database USE master GO IF EXISTS ( SELECT * FROM sys.database_principals WHERE…

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
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes