Where is adb.exe in windows 10 located?

瘦欲@ 提交于 2020-01-11 14:59:39

问题


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?


回答1:


it is located in AppData hidden folder

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

From l33t's comment below
%LOCALAPPDATA%\Android\sdk\platform-tools




回答2:


You can find it here:

%USERPROFILE%\AppData\Local\Android\sdk\platform-tools

To save yourself the hassle in the future, add it to your path:

  1. Click 'Start'.
  2. Type 'Edit environment variables for your account', and click it.
  3. Double click PATH.
  4. Click 'New'.
  5. Paste that path in.
  6. Click 'OK', click 'OK', and restart any command prompts you have open.



回答3:


  • Open android studio

  • Press configure or if project opens go to settings

  • lookup Android SDK shown in picture

  • You can see your Android SDK Location. Open file in file explorer to that location.

  • Add this to end or direct through to this

\platform-tools\adb.exe

full path on my pc is :

C:\Users\Daniel\AppData\Local\Android\Sdk\platform-tools




回答4:


If you are not able to find platform-tools folder, please open SDK Manager and install "Android SDK Platform-Tools" from SDK Tools tab.




回答5:


I know the question was in the context of "android studio 1.5", but I found this answer and have Xamarin installed.

In this case, the location is C:\Program Files (x86)\Android\android-sdk\platform-tools




回答6:


You'll find it in the AppData folder if you choose to install it in the default location. Otherwise, it will be located at the folder where you installed your Android SDK/platform-tools folder.




回答7:


Open a cmd window and type where adb.exe

For me

D:\android-sdk_r24.4.1-windows\android-sdk-windows\platform-tools\adb.exe




回答8:


Since you already have Android Studio installed, and require the environment variable ANDROID_HOME to be set, the easy way to do this is to add %ANDROID_HOME%\platform-tools to your path.




回答9:


I have taken snapshot of adb.exe directory. I hope it helps you best,




回答10:


You can look in C:\android\sdk\platform-tools . This was where I found it on my computer.




回答11:


Got it to work go to the local.properties file under your build.gradle files to find out the PATH to your SDK, from the SDK location go into the platform-tools folder and look and see if you have adb.exe.

If not go to http://adbshell.com/downloads and download ADB KITS. Copy the zip folder's contents into the platform-tools folder and re-make your project.

I didn't need to update the PATH in the Extended Controls Settings section on the emulator, I left Use detected ADB location settings on. Hope this makes this faster for you !




回答12:


Mine was in: C:\NVPACK\android-sdk-windows\platform-tools




回答13:


if you know SDK'path on your system, (by default, it's in /users/appdata/local/Android/...

then, open platform-tools or platform/platform-tools and launch cmd...

it's there you can write adb



来源:https://stackoverflow.com/questions/35854238/where-is-adb-exe-in-windows-10-located

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!