Created
July 29, 2016 14:47
-
-
Save mpost/0681485f08b6a0d0f5cd1b630aada027 to your computer and use it in GitHub Desktop.
Register windows context menu entry to adb install apk from explorer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
ECHO Running "adb install -r %1" | |
adb install -r %1 | |
PAUSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\*\shell\Android adb install] | |
@="Android: adb install" | |
"Icon"="%SystemRoot%\\System32\\shell32.dll,71" | |
[HKEY_CLASSES_ROOT\*\shell\Android adb install\command] | |
@="\"C:\\Users\\<username>\\android-cli.bat\" \"%1\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment