Запуск adb на windows 10

Содержание

  • Шаг 1: Скачивание и установка
  • Шаг 2: Запуск утилиты ADB
    • Способ 1: «Командная строка» Windows
    • Способ 2: Windows PowerShell
  • Дополнительно. Подключение Android-устройства к ADB на ПК
  • Вопросы и ответы

Как запустить ADB на Windows 10

Шаг 1: Скачивание и установка

Прежде чем запуск консольной утилиты ADB станет возможным, конечно же, необходимо загрузить и инсталлировать её на компьютер. В действительности, существует множество вариантов получения и развёртывания софта, который обеспечивает функционирование Android Debug Bridge на ПК под управлением Windows 10, а следующая инструкция демонстрирует, как это сделать задокументированным разработчиками технологии Android Debug Bridge, а значит, самым надёжным и эффективным способом.

Скачать SDK Platform Tools (ADB и Fastboot) с официального сайта

  1. Перейдите по представленной перед этой инструкцией ссылке. В результате откроется веб-страница с описанием и возможностью загрузки включающего ADB пакета SDK Platform Tools на интернет-ресурсе Android Developers от Google.
  2. Как запустить ADB на Windows 10 01

  3. Переместитесь в раздел веб-страницы «Downloads»,
    Как запустить ADB на Windows 10 02

    щёлкните по имеющейся здесь ссылке «Download SDK Platform-Tools for Windows».

  4. Как запустить ADB на Windows 10 03

  5. Прокрутите информацию в отобразившемся поверх веб-страницы окне до конца,
    Как запустить ADB на Windows 10 04

    установите отметку в чекбоксе «I have read and agree with the above terms and conditions».

  6. Как запустить ADB на Windows 10 05

  7. Нажмите на ставшую активной после выполнения предыдущего шага кнопку «Download Android SDK Platform-Tools for Windows».
  8. Как запустить ADB на Windows 10 06

  9. Если это предполагают настройки браузера, укажите (и запомните) путь сохранения предоставляемого сайтом ZIP-архива на диске компьютера
    Как запустить ADB на Windows 10 07

    (по умолчанию будет скачан в системную библиотеку Win 10 «Загрузки»). Подтвердите инициацию получения пакета

    Как запустить ADB на Windows 10 08

    и дождитесь окончания этого процесса.

  10. Как запустить ADB на Windows 10 09

  11. По завершении скачивания файла platform-tools_rВЕРСИЯ-windows.zip откройте содержащую его папку
    Как запустить ADB на Windows 10 10

    в Проводнике Windows.

    Как запустить ADB на Windows 10 11

    Читайте также: Запуск «Проводника» в ОС Windows 10

  12. Далее извлеките всё содержимое архива в отдельный каталог. (С этой целью кликните правой кнопкой мыши по наименованию пакета, выберите «Извлечь всё» в открывшемся контекстном меню, подтвердите действие).

    Как запустить ADB на Windows 10 12

    Подробнее: Распаковка ZIP-архивов в ОС Windows 10
    Как запустить ADB на Windows 10 13

  13. В результате разархивации пакета SDK Platform Tools образуется директория, которая содержит вложенную папку «platform-tools»
    Как запустить ADB на Windows 10 14

    именно она и является целевой в нашем случае.

    Как запустить ADB на Windows 10 15

    По сути, на этом получение утилиты ADB можно считать завершённым, её уже можно запускать из указанной папки средствами консоли Windows 10 одним из предложенных далее в этой статье способов. При этом, для удобства в дальнейшем, а также полного соответствия рекомендациям разработчиков Android Debug Bridge необходимо скопировать или переместить каталог «platform-tools»

    Как запустить ADB на Windows 10 16

    в корень

    Как запустить ADB на Windows 10 17

    системного диска ПК (С:).

    Как запустить ADB на Windows 10 18

    Кроме прочего, каталог с утилитой ADB можно переименовать по собственному усмотрению (например, сократить наименование или как-то иначе, но не применяя кириллических символов). При таком подходе запомните присвоенное каталогу с утилитой ADB имя, и точно вводите его вместо platform-tools при выполнении дальнейших инструкций из этого материала.

  14. Как запустить ADB на Windows 10 19

Входящие в комплект SDK Platform Tools утилиты (не только рассматриваемая в этой статье ADB, но также Fastboot) в случае с Windows 10 могут быть запущены и эффективно эксплуатироваться в классической «Командной строке», а также её более современном аналоге – консольной оболочке «PowerShell». Далее рассмотрим подробно, как используются оба указанных инструмента для решения нашей задачи.

Способ 1: «Командная строка» Windows

По сути, чтобы получить доступ к функциям утилиты ADB через «Командную строку» Windows, достаточно открыть во второй содержащий компоненты первой каталог («platform-tools»). Практически это реализуемо минимум двумя путями, вы можете использовать тот, который кажется более удобным.

Вариант 1: Консольная команда «cd»

Самый распространённый и привычный большинству метод запуска консольной утилиты ADB заключается в открытии приложения «Командная строка» и переходе через неё в папку с целевым софтом с помощью специализированной текстовой команды:

  1. Любым способом запустите «Командную строку» Виндовс 10. К примеру, и быстрее всего с этой целью можно задействовать оснастку «Выполнить»: нажмите «Windows» + «R» на клавиатуре, введите в поле «Открыть» отобразившегося окошка следующий текст:

    cmd

    Как запустить ADB на Windows 10 21

    Щёлкните по кнопке «ОK» мышкой или нажмите «Enter».

    Подробнее: Открытие «Командной строки» в Windows 10

  2. Как запустить ADB на Windows 10 22

  3. Введите команду перехода в каталог утилиты ADB – она состоит из указания cd и затем полного пути к целевой директории на диске компьютера. То есть, если вы точно следовали рекомендациям выше в статье, команда будет следующей:

    cd C:\platform-tools

    Как запустить ADB на Windows 10 23

    Написав команду, отправьте её на выполнение — для этого нажмите «Ввод» на клавиатуре.

  4. Как запустить ADB на Windows 10 24

  5. Фактически всё, далее можно приступать к отправке текстовых команд ADB, — утилита готова к их приёму и обработке. Чтобы удостовериться в том, что отладочный мост введён в эксплуатацию, а также для получения списка основных команд ADB, можно ввести в консоли и отправить на выполнение следующее указание:

    adb.exe

  6. Как запустить ADB на Windows 10 25

Вариант 2: Средства Проводника Windows

Более удобный и часто выполнимый быстрее, нежели вышеописанный, подход к запуску утилиты АДБ в классической «Командной строке» эксплуатирует возможности системного файлового менеджера Виндовс 10:

  1. Откройте Проводник Windows 10, перейдите в каталог ADB («platform-tools»).
  2. Как запустить ADB на Windows 10 26

  3. Кликните левой кнопкой мыши в (важно!) свободной от надписей области поля, которое расположено в верхней части окна Проводника и отображает путь
    Как запустить ADB на Windows 10 27

    к текущей открытой вами папке.

  4. Как запустить ADB на Windows 10 28

  5. С клавиатуры введите следующий текст:

    cmd

  6. Как запустить ADB на Windows 10 29

  7. Нажмите «Enter» — в результате запустится «Командная строка» Windows c уже открытой в ней папкой «platform-tools».
    Как запустить ADB на Windows 10 30

    На этом наша задача считается решённой, вы можете приступать к вводу в «Командную строку» и отправке на выполнение команд Android Debug Bridge.

  8. Как запустить ADB на Windows 10 31

Способ 2: Windows PowerShell

Запуск ADB через поставляемое в комплекте ОС Windows 10 средство PowerShell выполняется не намного сложнее, нежели при использовании классической «Командной строки», а практически реализуется одним из двух нижеописанных путей.

Вариант 1: Консольная команда «cd»

Основной вариант запуска Android Debug Bridge средствами PowerShell фактически повторяет таковой в «Командной строке», — необходимо запустить консоль, а затем с помощью специальной команды открыть в ней каталог с утилитой ADB и сопровождающими её файлами.

  1. Откройте консольную оболочку PowerShell. Как и классическую «Командную строку» в Windows 10 это средство можно запустить большим числом способов, а быстрее всего — из меню дополнительных действий кнопки «Пуск» на «Панели задач» операционки: кликните по последней правой кнопкой манипулятора и выберите «Windows PowerShell» в отобразившемся перечне.
    Как запустить ADB на Windows 10 32

    Подробнее: Запуск «PowerShell» в ОС Windows 10

  2. Как запустить ADB на Windows 10 33

  3. Введите команду перехода в папку утилиты ADB, — её синтаксис аналогичен рассмотренному выше в этом материале указанию для классической «Командной строки»:

    cd C:\platform-tools

    Как запустить ADB на Windows 10 34

    Нажав «Ввод» на клавиатуре, отправьте указание на выполнение консолью.

  4. Как запустить ADB на Windows 10 35

  5. Собственно, всё — средство ADB готово к выполнению своего предназначения. Дальнейшие ваши действия двухвариантные:
    • При запуске ADB-команд в Windows PowerShell по умолчанию перед ними необходимо прописывать префикс ./. То есть, к примеру, чтобы вывести в консоли список основных команд ADB в текущем случае, необходимо отправить на выполнение следующее текстовое указание:

      ./adb.exe

      Как запустить ADB на Windows 10 36

      После написания команды и нажатия «Enter» получаем следующий результат:

    • Как запустить ADB на Windows 10 37

    • Если подставлять ./ перед каждой передаваемой средствами ПоверШелл через Андроид Дебаг Бридж командой вы не желаете, то можете перед началом работы открыть себе доступ к «классической» командной строке в современной консольной оболочке. Для этого запустите в PowerShell команду:

      cmd

      Как запустить ADB на Windows 10 39

      Далее отправляйте указания ADB мобильному девайсу c ОС Android без префикса:

    • Как запустить ADB на Windows 10 40

Вариант 2: Расширенное контекстное меню папки

Ещё один метод запуска ADB в консольной оболочке PowerShell реализуется средствами Проводника Windows 10, а его использование часто оказывается более удобным, нежели описанный выше подход.

  1. Перейдите в папку с утилитой ADB через Проводник Win 10.
  2. Как запустить ADB на Windows 10 41

  3. Нажмите «Shift» на клавиатуре компьютера и, удерживая эту клавишу, щёлкните правой кнопкой манипулятора по свободному от элементов (значков файлов) месту в демонстрирующей содержимое каталога «platform-tools» области окна Проводника.
  4. Как запустить ADB на Windows 10 42

  5. По результату вышеописанной манипуляции откроется расширенное контекстное меню папки (после этого можно прекратить воздействие на кнопку «Shift» клавиатуры). В меню выберите пункт «Открыть окно Power Shell здесь».
  6. Как запустить ADB на Windows 10 43

  7. Итогом манипуляций станет запуск приложения Windows Power Shell c уже открытым в нём каталогом «platform-tools». На этом наша задача считается решённой, приступайте к вводу и отправке на выполнение команд Android Debug Bridge.
    Как запустить ADB на Windows 10 44

    (Принцип здесь тот же, что и при рассмотренном выше варианте запуска утилиты: либо предварительно запустите команду cmd, а затем отправляйте ADB-команды в их «стандартном» виде; либо подставляйте префикс ./ перед каждым указанием).

  8. Как запустить ADB на Windows 10 45

Дополнительно. Подключение Android-устройства к ADB на ПК

Чтобы скачивание, развёртывание и запуск ADB в среде Windows 10 позволили достичь конечных целей своего осуществления, то есть вы получили возможность производить вмешательство в работу системного ПО управляемого ОС Android мобильного девайса с компьютера, чрезвычайно важно правильно подключить смартфон или планшет к консольной утилите. Полный алгоритм выполнения данной операции изложен ниже.

Скачать универсальные драйверы от Google для работы с Android-девайсами через ADB

  1. Прежде чем приступать к выполнению вмешательства в работу системного ПО смартфона или планшета под управлением ОС Android с компьютера через ADB, на мобильном устройстве необходимо активировать особый режим функционирования – «Отладка через USB».
    Как запустить ADB на Windows 10 57

    Сделайте это в первую очередь, а подробные инструкции по решению данного вопроса, если они необходимы, вы обнаружите в статьях по следующим ссылкам:

    Подробнее:
    Как включить «Отладку по USB» на Android-девайсе
    Активация режима «Отладка по USB» на смартфонах Xiaomi (Mi, Redmi, POCO)

  2. Как запустить ADB на Windows 10 58

  3. Подсоедините Андроид-девайс с активированной «Отладкой по ЮСБ» к USB-порту компьютера кабелем.
  4. Как запустить ADB на Windows 10 59

  5. Далее, например из контекстного меню кнопки «Пуск» на «Панели задач» операционки, откройте «Диспетчер устройств» Windows 10.
  6. Как запустить ADB на Windows 10 46

  7. Убедитесь, что мобильное устройство определилось операционной системой правильно и для него загружен необходимый драйвер. В таком варианте «Диспетчер устройств» отображает категорию «Android Phone», и в ней — запись «Android Composite ADB Interface» (последняя не должна сопровождаться какими-либо отметками, типа восклицательного знака на жёлтом фоне).
    Как запустить ADB на Windows 10 47

    Если с определением Android-девайса в «Диспетчере устройств» Windows 10 наблюдаются какие-либо проблемы, чаще всего их следует решать путём установки/переустановки ADB-драйвера.

    Читайте также: Инсталляция драйверов для работы с Android-девайсами с ПК

    Опять же, в большинстве случаев, самым правильным выбором драйвера для обеспечения сопряжения ПК и Андроид-устройства через АДБ будет универсальный компонент, доступный для скачивания на интернет-ресурсе «Android Developers»

    Как запустить ADB на Windows 10 49

    (ссылка доступна перед настоящей инструкцией).

  8. Как запустить ADB на Windows 10 50

  9. Запустите утилиту ADB любым из предложенных выше в этом материале способом.
    Как запустить ADB на Windows 10 52

    Напишите и отправьте на выполнение консолью Windows 10 следующую команду:

    аdb devices

  10. Как запустить ADB на Windows 10 53

  11. Если сопряжение ПК и мобильного устройства через Android Debug Bridge осуществляется впервые, «Командная строка»/«PowerShell» в ответ на указание из предыдущего пункта инструкции выдаст следующее:

    List of devices attached
    ID_Android-устройства unauthorized

    Как запустить ADB на Windows 10 54

    В таком случае, возьмите (не отсоединяя от компьютера) смартфон или планшет, разблокируйте его. Поставьте отметку «Всегда разрешать отладку с этого компьютера» в отображаемом на экране Android-девайса окне «Отладка по USB», а после этого коснитесь кнопки «Разрешить».

    Как запустить ADB на Windows 10 60

    Далее перейдите к окну консоли с запущенной утилитой ADB на компьютере, повторите запуск команды аdb devices.

  12. Как запустить ADB на Windows 10 55

  13. Получив в «Командной строке» или «PowerShell» ответ в виде строчки ID_Android-устройства device, вы можете переходить к непосредственному решению возлагаемых на ADB задач, — смартфон/планшет теперь подключён к утилите правильно и готов к выполнению её (а по сути – ваших) указаний.
  14. Как запустить ADB на Windows 10 56

Что это такое?

ADB — Это Android Debug Bridge, что переводиться как «отладочный андроид мост». Служит он, как уже ясно из названия, для отладки андроида или отдельных приложений. С его помощью можно делать все действия, которые может делать пользователь и даже больше, однако для «больше» нужен ROOT доступ.

Чаще всего, ADB используется для прошивки или изменения каких то настроек, скрытых файлов и тд. Так-же можно просматривать логи прямо в реал-тайме (для этого есть спец. программы, которые куда удобнее командной строки), устанавливать программы, менять настройки и все в таком духе.

Я например использую подключение для тестирования своих андроид проектов. Нажимаешь кнопку «Build and run» и программа или игра собирается в пакет, отправляется на телефон и устанавливается, после чего еще и запускается. Удобно. Именно о таком способе использования и пойдет речь сегодня.

Как включить ADB?

Для того что-бы включить ADB на вашем устройстве на базе андроида, необходимо выполнить несложный ряд действий.

  • Зайти в настройки -> О телефоне
  • Нажимать на «Номер сборки», пока не появиться сообщение «вы стали разработчиком».
  • Выйти в меню настроек и найти новый пункт «Для разработчиков»
  • Включить пункт «отладка по USB»

По сути, это все, для включения ADB. Но для работы еще необходимы драйвера. Скачать универсальные можно тут . Эти драйвера подходят для большинства андроид телефонов, планшетов и других устройств на этой операционной системе. В 99% случаев у вас не будет с ними проблем. Однако производитель устройств часто выкладывают свои ADB драйвера на официальном сайте, часто, это просто копия универсальных драйверов, но бывают и исключения. Поэтому если ваше устройство не подключается с универсальными драйверами, попробуйте специальные от производителя.

Скачать ADB на компьютер

Конечно, для работы нужна сама программа ADB для пк. Точнее это архив с несколькими утилитами. Вот ссылка на официальную страницу от Google. ссылка. На странице есть ссылка на архив для windows, mac, linux. Жмем «Download SDK Platform-Tools for Windows» или другую платформу. Распаковываем архив в C:/adb для удобства.

Как пользоваться?

Пользоваться можно через командную строку или UI интерфейс. Через командную строку делается это так:

  • Пуск -> выполнить или WIN+R
  • Пишем команду «CMD«
  • Переходим в папку с ADB с помощью команды «CD C:/adb»

Далее пишем команды которые необходимы. Например, проверим, подключился ли телефон по мосту.

Пишем «adb devices». В консоли пробегут строчки о запуске сервера и выдастся список подключенных девайсов

c:\adb>adb devices
List of devices attached
* daemon not running. starting it now on port 5037 *
* daemon started successfully *

List of devices attached
1d886e2 device

Последняя строчка означает, что телефон подключен. Отлично!

Теперь можно вводить любые доступные команды, список которых можно посмотреть тут.

Консольки, это конечно хорошо, но давайте разберем конкретный пример.

Предположим, вы разрабатываете игру на Unity. Вам необходимо ее проверить на телефоне. Что для этого нужно? Просто подключите телефон к пк, а в Unity в окне Build выберете устройство из списка. Далее жмем кнопку «Build and run» и ждем. Готово.

Как использовать ADB по WIFI?

Да, да, вам не показалось, полный контроль можно получить и без проводов и да, это опасно. Однако, подключиться к телефону можно только если разрешить это делать.

  • Во-первых нужно в меню разработчика включить эту функцию (есть не на всех устройствах).
  • Во-вторых она выключается при перезагрузке.
  • И в-третьих при первом подключении с неизвестного устройства вылезет запрос на подтверждение, можно ли подключиться.

Однако, не все так просто. Что-бы все заработало, кабель все же понадобиться.

  1. Подключаем девайс по USB
  2. Открываем консоль и переходим в папку ADB, как уже делали выше.
  3. Убеждаемся что девайс и комп в одной Wi-Fi сети.
  4. Пишем adb tcpip 5555
  5. Пишем adb connect IP_ДЕВАЙСА. Адрес можно подсмотреть в настройках wifi вашей сети.

Обычно после этого достаточно выполнять только пункт 5. После этого ADB должен работать без проводов. Пользоваться им точно так же как и по проводу.

3.23/5 (22)

Android is the most feature-rich platform. It has all the options you’ll ever need to control and configure the device however you want. However, some advanced settings are buried deep down. To access them you have to install ADB shell and use it. Today, I will show you how to install ADB on Windows 10.

What is ADB

Android Debug Bridge or more widely knows as ADB shell is a command line tool that helps developers access advanced settings and debug Android apps and system settings. Besides from debugging, you can use ADB shell to back up the android device, install apps on your SD card by default, disable specific features of an app, transfer files, etc. In fact, you can even use ADB to make system level changes.

Generally, ADB is bundled with Android SDK (Software Development Kit). So, if you’ve installed Android SDK then you already have access to the ADB shell on Windows 10 with several other essential tools like Fastboot. However, if you are not a developer and don’t want to install the complete Android SDK package for just one tool that is only used occasionally then you can install ADB on Windows separately. i.e, without installing Android SDK.

Related: How to Run Android Apps on Ubuntu [Natively]

Enable USB Debugging Mode

Before installing ADB on Windows 10, you need to configure your Android device to accept the ADB commands. To do that, you have to enable USB debugging mode. Thankfully, it is very easy to do. Just follow the below instructions.

  1. Launch apps menu and tap on the “Settings” icon.
  2. Here, scroll down and tap on the option “About“.
  3. Now, scroll down again and repeatedly tap on the option “Build number” 7 times.
  4. Go back to the main Settings screen, scroll down and tap on the new option “Developer Options“.
  5. Here, toggle the button next to USB Debugging option. Tap on the option “Ok” in the confirmation pop-up to enable USB debugging mode.

That’s it, you’ve configured the Android device to receive ADB shell commands. You can now install ADB on Windows 10.

Related: 10 Best Secret Texting Apps for Android (Private Texting Apps for Android)

Note: the same procedure is applicable for older versions of Windows like 7 and 8.

1. To start off, download ADB for Windows from the official Google website.

2. Create a new folder with the name “ADB” in the root of the C drive. Now, extract all the files in the downloaded ZIP file to the folder you just created. This is how it looks like when you are done extracting.

3. Grab a USB data cable and connect your android device to the Windows computer. If prompted, select “file transfer (MTP)” mode.

4. Now, search for “Command Prompt” in the start menu and open it.

5. In the command prompt, use the below command to navigate the ADB installation folder. If you’ve installed ADB folder in some other place then change the command accordingly.

cd c:\ADB

6. Once you are here, execute the following command ADB Daemon.

adb devices

7. As soon as you execute the command, you will see “Allow USB debugging” prompt on your android device screen. Tap on the “Ok” button. Now, your device will be listed in the command prompt.

If you see your device listed then you’ve successfully installed ADB on Windows 10. If not, make sure that the device is properly connected and you have installed android drives on Windows. Generally, you can download android drivers specific to your device on the manufacturer website.

Related: How to Use Multiple Facebook Accounts on Android

Optional: Access ADB from Any Folder

As you can see, with the above method, you have to first navigate to the ADB installation folder if you want to use the ADB shell. This is not so much a problem but an inconvenience. To deal with that, you can add ADB to Windows Path. This allows you to access ADB from any folder or directory.

1. To add ADB to Windows path, search for “View advanced system settings” in the start menu and open it.

2. In this window, click on the button “Environment Variables“.

3. Here select the Path variable under “User variables for Username” and click on the button “Edit“.

Related: How To Disable Auto Media Download Feature In WhatsApp [Android]

4. Now, click on the “New” button.

5. Enter the path to the ADB folder and click on the button “Ok” to save the changes. In my case, the folder path is C:\ADB.

6. Click on the “Ok” on other main windows to save the changes.

From this point forward, you can access ABD from any folder. As you can see from the below image, I’m starting the ADB daemon from a folder in my E drive.

That’s all there is to do and it is that simple to install ADB on Windows 10 and add ADB to Windows path. If you find this article useful then do read how to disable volume buttons in android and how to hide audiobooks from music players in android.

Comment below sharing your thoughts and experiences about using the above method to install ADB on Windows.

Related: How to Download Android Apps to PC without Installing Any Software [Quick Tip]

  • Home
  • News
  • How to Install ADB (Android Debug Bridge) on Windows 10 & Mac

By Vera | Follow |
Last Updated

“ADB install” may be the topic you may also be interested in. To communicate with a device from your computer with this command-line tool, you need to install ADB on Windows 10 or Mac. How to install ADB? This guide from MiniTool gives you step-by-step instructions.

ADB, also called Android Debug Bridge, is a command-line tool that is mainly for developers to debug apps. Now it is not restricted to developers and you can use it to do some useful things on your PC, for example, backup and restore Android with ADB, ADB install APK for Android from a computer, reboot the phone to Recovery Mode and Bootloader, etc.

To use ABD on your computer, you need to install it first. The following step-by-step guide gives detailed instructions and let’s look through it.

How to Install ADB Windows 10 and Mac

ADB Download Windows 10 and Install

It is not complicated to set up ADB on Windows 10 and see the steps below:

Download SDK Platform-Tools and Unzip It

Step 1: Go to the SDK Platform Tools release notes page and click Download SDK Platform-Tools for Windows to get a ZIP folder.

download SDK platform-tools for Windows

Step 2: Extract all the contents of this folder on your Windows 10 PC.

Step 3: In the extracted folder, press the Shift key and right-click the space. This can bring a context menu and choose Open PowerShell window here. On some computers, you see Open command window here.

open platform tools in CMD or PowerShell

Tip: You can click on the address bar in the extracted folder, type in cmd and press Enter to open Command Prompt.

Enable USB Debugging on Your Android Phone

To use ADB, you need to make sure USB debugging is turned on.

1. Connect your Android phone to the Windows PC via a USB cable. Choose MTP as the connection mode.

2. Type the adb devices command to the CMD or PowerShell command and press Enter. This command can view the list of Android devices communicating with your computer.

adb devices command

3. On your phone’s screen, a prompt pops up to ask you to allow USB Debugging access. Just allow it. You can check the box of Always allow from this computer.

4. After enabling USB debugging, you should execute adb devices again to list your device.

Tip: In addition, there is another way for you to enable USB debugging. After connecting the Android phone to your PC, pick up the phone, go to Settings > About phone, tap on Build number several times to access Developer options, and turn on USB debugging. To know more, refer to this post – What Is USB Debugging & How to Enable/Disable It.

ADB Commands

Now, ADB is successfully installed on your Windows computer. Then, you can run some ADB commands based on your needs. Let’s see some common commands:

  1. adb install <app name.apk> – install apps programmatically using APK files
  2. adb reboot recovery – reboot your Android device in recovery mode
  3. adb reboot bootloader – reboot your Android device to bootloader
  4. adb shell – start a remote shell with your Android device
  5. adb pull – move a file from your Android device programmatically

ADB Install Mac via Homebrew

Installing ADB on your Mac is different from the installation on Windows and follow the steps below for this work:

Step 1: Open Terminal and execute the command – ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” to install Homebrew.

Step 2: Install ADB via the command – brew cask install android-platform-tools.

Step 3: Enable USB debugging and start using ADB via the adb devices command.

ADB Driver Install (If Needed)

Sometimes you cannot use ADB properly although you install it on your computer successfully. When getting the error device not found in Windows 10, you need to install an up-to-date ADB driver. Besides, some other ways are also recommended, and refer to this post to know more – How to Fix ADB Device Not Found Error in Windows 10? (4 Ways). 

Final Words

How to install ADB on Windows 10 PC or Mac? After reading this post, you find the answer. Just follow the step-by-step guide for an easy ADB installation operation.

About The Author

Vera

Position: Columnist

Vera is an editor of the MiniTool Team since 2016 who has more than 7 years’ writing experiences in the field of technical articles. Her articles mainly focus on disk & partition management, PC data recovery, video conversion, as well as PC backup & restore, helping users to solve some errors and issues when using their computers. In her spare times, she likes shopping, playing games and reading some articles.

How to Install ADB on Windows 10: It is not possible to carry laptops or desktops everywhere you go. Instead, you carry mobile phones which you can use it for various purposes like calling, capturing photos, videos, documents, etc. But the problem with mobile phones is that it comes with limited memory and once the memory starts to fill up, then you need to transfer all or some of its data somewhere safe. And most people transfer their mobile data to their PC as its the only logical step. But the question arises how do you transfer your data from mobile phones to PCs?

The Answer to this question is ADB (Android Debug Bridge). So, the Windows is provided with ADB  which allows you to connect your PCs to your android phones. Let’s dive in little more to understand what ADB is:

ADB: ADB stands for Android Debug Bridge which is a Software-interface for Android System. Technically, it is used to connect an android device with a computer using a USB cable or using wireless connections like Bluetooth. It also helps in executing commands on your mobile phone through your computers and allows you to transfer data from Android phones to your PC. ADB is part of Android SDK (Software Development Kit).

How To Install ADB On Windows 10

ADB can be used through Command Line (CMD) for Windows. Its main advantage is it enables to access phone contents like copy files from computer to phones or from phone to computer, install and uninstall any app and more, directly by using a computer without any actual interaction with the phone.

Table of Contents

In order to use ADB command line, you need to first install it on your computer. To install ADB in your computers follow the below steps:

Method 1 – Install Android SDK Command Line Tools

1.Visit the website and navigate to Command line tools only. Click on sdk-tools-windows to download SDK tools for Windows.

Visit website and Click on sdk-tools-windows to download SDK tools for windows

2.Check the box near to “I have read and agree to the above terms and conditions”. Then click on “Download Android Command Line Tools for Windows”. The download will begin shortly.

Click on “Download Android Command line tools for Windows”. Download will begin

3.When the download completes, unzip the downloaded zip file. The ADB files under the zip are portable so you can extract them wherever you like.

When download complete, unzip the zip file where want to keep the ADB files

4.Open the unzipped folder.

Open the unzipped folder | Install ADB (Android Debug Bridge) on Windows 10

5.Now double-click on the bin folder to open it. Now type cmd in the address bar of File Explorer and hit Enter to open Command Prompt.

Visit inside bin folder and open a command prompt by typing cmd

6.Command prompt will open up at the above path.

Command prompt will open up

7.Run the below command on command prompt to download and install Android SDK Platform-tools:

“platform-tools” “platforms;android-28”

Install SDK Command Line on Windows 10 using CMD | Install ADB on Windows 10

8.You will prompt to type (y/N) for permission. Type y for yes.

Type y to begin installing Android SKD command line tool

9.As soon as you type yes, downloading will start.

10.After downloading is completed, close the command prompt.

All your Android SDK platform tools will be downloaded and installed by now. Now you have successfully install ADB on Windows 10.

Method 2 – Enable USB Debugging on Phone

To use ADB command line tool, first, you need to enable the USB debugging feature of your Android phone. To do so follow the below steps:

1.Open your phone settings and click on About phone.

Under Android Settings tap on About phone

2.Under About phone, look for Build Number or MIUI Version.

3.Tap 7-8 times on the build number and then you will see a pop saying “You are now a developer!” on your screen.

You can enable developer options by tapping 7-8 times on the build number in ‘About phone’ section

4.Again go back to the Settings screen and look for the Additional settings option.

From the Settings screen click on Advanced Settings

5.Under Additional settings, click on Developer options.

Under Additional settings, click on Developer options

6.Under Developer options, look for USB debugging.

Under developer options, look for USB debugging

7.Toggle on the button in front of USB debugging. A confirmation message will appear on the screen, just click OK.

Enable USB debugging on your Android Phone

8.Your USB debugging is enabled and ready to use.

Enable USB debugging in the developer options on your Mobile | Install ADB (Android Debug Bridge) on Windows 10

Once you have followed the above steps, then connect your Android phone to the PC, it will ask for confirmation to allow using USB Debugging on your Phone, just click OK to allow it.

Method 3 – Test ADB (Android Debug Bridge)

Now you need to test the SDK platform tools and see if it is working properly & compatible with your device.

1.Open the folder where you have downloaded and installed the SDK platform tools.

Open the downloaded folder and installed SDK platform tools

2.Open Command Prompt by typing cmd in the address bar and hit Enter. The command prompt will open up.

Open a command prompt by typing cmd in path box and hit enter | Install ADB on Windows 10

3.Now connect your Android phone to Computer using the USB cable to test whether or not ADB is working properly. To test it, run the following command into cmd and hit Enter:

“adb devices”

ADB is working properly or not and run the command in command prompt

4.List of all the devices connected to your computer will appear and your Android device will be one of them.

All the devices connected to your computer and your device one of them

Now you have install ADB on Windows 10, enabled the USB debugging option on Android and have tested ADB on your device. But, if you did not find your device in the above list then you will need to install the appropriate driver for your device.

Method 4 – Install Appropriate Driver

Note: This step is only needed if you did not find your device in the above list when you ran the command “adb devices”. If you already found your device on the above list then skip this step and proceed to the next one.

First, download the driver package for your device from your phone’s manufacturer. So head to their website and find the drivers for your device. You can also search the XDA Developers for driver downloads without the extra software. Once you have downloaded the driver, you need to install them using the following guide:

1.Press Windows Key + R then type devmgmt.msc and hit Enter to open Device Manager.

devmgmt.msc device manager

2.From Device Manager click on Portable devices.

Click on Portable devices

3.You will find your Android phone under Portable Devices. Right-click on it and then click on Properties.

Right click on your android phone and then click on Properties

4.Switch to the Driver tab under your Phone Properties window.

Install ADB (Android Debug Bridge) on Windows 10

5.Under the Driver tab, click on Update driver.

Under driver tab, click on Update driver

6.A dialogue box will appear. Click on Browse my computer for driver software.

Click on Browse my computer for driver software | Install ADB (Android Debug Bridge) on Windows 10

7.Browse to look for driver software on your computer and click Next.

Browse for driver software on your computer and click next

8.List of available drivers will appear and click on Install to install them.

After completing the above process, follow Method 3 again and now you will find your device in the list of devices attached.

Method 5 – Add ADB to System Path

This step is optional as the only advantage of this step is that you won’t need to visit the whole ADB folder to open the Command Prompt. You will be able to open the Command Prompt whenever you want to use after adding the ADB to the Windows System Path. Once you have added it, you can simply type adb from the Command Prompt window whenever you want to use it and no matter which folder you are in. To add ADB to Windows System Path follow below steps:

1.Press Windows Key + R then type sysdm.cpl and hit Enter to open System Properties.

system properties sysdm

2.Switch to the Advanced tab.

Open advanced system settings by searching in search bar | Install ADB on Windows 10

3.Click on the Environment Variables button.

Switch to Advanced tab then click on Environment Variables button

4.Under System Variables, look for a variable PATH.

Under System Variables, look for a variable PATH

5.Select it and click on Edit button.

Select it and click on edit

6.A new dialogue box will appear.

New dialogue box will appear and click on OK.

7.Click on the New button. It will add a new line at the end of the list.

Click on New button. It will add a new line at the end of the list

8.Enter the whole path (address) where you have downloaded and installed the SDK platform tools.

Enter the whole path where you have downloaded and installed platform tools

9.Once finished, click on the Ok button.

Click on the Ok button

10.After completing the above process, now ADB can be accessed from the command prompt anywhere without needing to mention the whole path or directory.

Now ADB can be accessed from any command prompt | Install ADB on Windows 10

Recommended:

  • External Hard Drive Not Showing Up or Recognized? Here is how to fix it!
  • How to Use OneDrive: Getting Started with Microsoft OneDrive
  • Disable Touchpad when Mouse is connected in Windows 10
  • Install And Configure XAMPP on Windows 10

I hope this article was helpful and you can now easily Install ADB on Windows 10, but if you still have any questions regarding this tutorial then feel free to ask them in the comment’s section.

  • Запуск 2 windows на одном компьютере
  • Запросите разрешение на изменение от система на изменение этой папки windows 10
  • Запрошенный доступ к реестру запрещен windows 10
  • Запрос при удалении файлов windows 10
  • Запросите разрешение от система на изменение этого файла windows 10