android-studioadbwindows-10

Where is adb.exe in windows 10 located?


I installed android studio 1.5 on windows 10.

When I type in command line:

adb

I get command not found.

Where can I get it from or where is it installed?


Solution

  • It is located in the AppData hidden folder

    C:\Users\[user]\AppData\Local\Android\sdk\platform-tools
    

    From l33t's comment below you may use the following shortcut:

    %LOCALAPPDATA%\Android\sdk\platform-tools
    

    To use it in PowerShell you can do: $env:LOCALAPPDATA\Android\sdk\platform-tools