Android adb won't let me enter commands
adb, android
Solution
You start the command shell (WindowsKey + R, enter `cmd` in the window that appears and hit Enter.), then use it from there. `adb shell` is probably the command you need.
`C:\> cd \Path\to\platform-tools` `C:\Path\to\platform-tools\> adb shell`
if you add the path to your environment `PATH` you don't need to `cd` there. [This] should be a good example how to do that.
Problem
I'm trying to deal with some SQLiteDB issues and wanted to use the ABD tool to access my emulators database. When I click on the adb file in the platform-tool file, it opens up but very quickly throws a bunch of text on the window and then closes. Its so fast I can't even tell what it is doing. I tried running as administrator and it didn't change. I'm using Vista if that has anything to do with it. Any suggestions for how I can even get it to stop from closing so I can enter a command?