How to set up smartphones and PCs. Informational portal
  • home
  • Programs
  • Drivers for the adb program. Download adb run program

Drivers for the adb program. Download adb run program

ADB is not a program, but a driver for Windows 10. You need to download the file in order not only to introduce your PC and your Android smartphone, but also so that you have a convenient tool for rooting and getting full access to your mobile phone.

If you are wondering how to root your mobile, then you are on the right page. No, here you will not find a program to carry out this procedure, but here you will get a convenient driver, without which you will not succeed. No matter how powerful and advanced program for obtaining administrator rights on your device you have, you still will not be able to connect and get full access at the same level as you get after installing ADB drivers.

We have already described the main task above. But let's dwell a little more on how exactly you can use this product. Let's start with the basics - this package is not directly what you need. This is a versatile utility -. The utility will select the necessary components by itself, and you do not have to do anything extra. If you are attracted by this idea, then follow the following procedure:

  • Install universal;
  • Connect your phone;
  • Launch component selection and install it.

Restarting your PC is only required in extreme cases. But if Windows 10 asks you for this, then of course, you have no choice but to agree. After all, until you restart, you will not be able to apply the changes that occurred during the installation process.

How to use ADB drivers

Since this solution is not a full-fledged utility, which is, for example, Peers.tv or any other classic utility, you cannot use it. It has no visual interface or physical capabilities. Why then download it? Everything is simple and exactly the same as in the case of any other drivers for your computer. You need to install them in order for everything to work as correctly as possible. Specifically, in this case, so that your Windows 10 PC will normally pick up the phone or see it corny.

Note that the driver for ADB is free to download. This means you do not need to pay money to those who implement the component for Windows 10 on a paid basis. Also, you do not need to select the required assembly depending on your OS, because the installation file is so versatile that it is suitable for both 32-bit and 64-bit systems. Also note that if he himself is in Russian, this does not mean that there is an ADB driver for your phone, also in Russian. It is likely that it will be in English, since this is the case with all popular phone models from XiAomi, Samsung, HTC, Sony and others.

There are many tools for working with a smartphone connected via USB cable or Wi-Fi. Advanced tools allow you to move files, install and uninstall software, view contacts, take screenshots, and even send SMS, but no graphical tool comes close to the power that an Android console can provide. In this article, we will talk about ADB (Android Debug Bridge) - a standard tool for debugging and working with the Android console from a computer.

The commands described in the article can be executed directly on the device by downloading a terminal emulator from the market, but it is more convenient to do this, of course, from a computer via adb.

ADB Basics

To start working with ADB, you must activate it on the device and install the adb utility and drivers on the computer. The first task is performed by enabling "USB debugging" in the "For Developers" settings item (if this item is hidden, press seven times on the build number in the "About phone" menu).

To install ADB on your computer, download the Adb Kit and unpack it into any folder (I recommend using folder names without Russian characters). We also download and install the ADB drivers.

You need to work with adb from the command line. Press Win + R and enter cmd, then go to the folder containing adb. For my folder, the command would be:

Cd \ android

In order not to do all these manipulations every time, you can add the desired folder to the Path variable. To do this, go to Control Panel -> System -> Advanced System Settings -> Environment Variables, find the Path variable and add the path to the adb folder at the end of the line, separated by semicolons. Now, after starting the console, you can immediately enter the necessary commands.

Let's check our connection to the phone using the following command (it should display a list of connected devices):

Adb devices

You can work with ADB via Wi-Fi. This requires root privileges and the WiFi ADB app. We launch the application, press the switch and connect to the smartphone using the connect command and the IP address shown by the application:

INFO

You can copy the console output after selecting it with the mouse, as well as paste the copied command or file name into the console with the right mouse button. Included in console properties.

Installing programs

ADB can be used to install applications without having to copy them to your smartphone. It is enough to execute the following command:

Adb install d: /downloads/file_name.apk

Additional keys can also be added to the command. Will be useful -e- reinstall the application while saving the data and -d- install a version less than the current one.

You can also uninstall programs, but for this you need to know the name of the package (I will tell you how to find out a little later). Using the Angry Birds Seasons example, the team will look like this:

Adb uninstall com.rovio.angrybirdsseasons

Backup applications

Android has built-in backup functionality that can also be started using the command line. To do this, use the adb backup command and a set of options:

Adb backup [options]<приложения>

  • -f specifies the name of the file to be created and its location on the computer. If the key is missing, the backup.ab file will be created in the current directory;
  • -apk | -noapk indicates whether to include only application data in the backup, or itself.apk too (does not include by default);
  • -obb | -noobb specifies whether to include in the backup .obb extensions for applications (does not include by default);
  • -shared | -noshared specifies whether to include in the backup the contents of the application on the SD card (by default it does not);
  • -all indicates the need to backup all installed applications;
  • -system | -nosystem indicates whether to include system applications in the backup (by default it includes);
  • - a list of packages for backup.

If we want to create a backup of all non-system progs, including .apk ourselves, to a specific location, then the command will look like this:

Adb backup -f c: \ android \ backup.ab -apk -all -nosystem

After entering, you must confirm the start of the backup on the device itself. To restore the resulting backup, you need to run the appropriate command:

Adb restore c: \ android \ backup.ab

Console to Console

Along with the aforementioned console, which is a DOS console for Windows, Android has its own. She is called through adb shell and is essentially a standard Linux console, but with an incomplete set of commands, which can be extended by installing BusyBox from the market. There are two ways to use this console. In interactive mode, it is started by the command

Adb shell

The $ sign appears in the console (hereinafter, this sign will mean the need to enter the preliminary adb shell command), and after that you can enter a series of commands, receiving a response after each response. The second way - if you need to enter only one command, you can write it in a row behind the adb shell.

The shell uses standard commands for copying, moving and deleting files: cp, mv and rm... You can change directories ( cd) and watch their contents ( ls). In addition to the standard Linux commands, which you can learn about from any reference book, Android has several specialized tools of its own, but to use some of them, you will have to get root rights on your smartphone, and after starting the console, run the su command:

Adb shell su

This should be done if, in response to any command, you see a line similar to "access denied" or "are you root?". If successful, the $ sign will change to #.



Taking a screenshot

Done in one line:

Adb shell screencap /sdcard/screen.png

After that, the picture must be pulled out of the device with the command adb pull:

Adb pull /sdcard/screen.png

In recovery, a screenshot can be made with the following command:

Adb pull / dev / graphics / fb0

Then you need to convert the fb0 file to a normal image using FFmpeg, which you need to download and put in the adb folder. The extension must be installed on your device:

Ffmpeg -f rawvideo -pix_fmt rgb32 -s 1080x1920 -i fb0 fb0.png

Recording video of what is happening on the device screen

adb shell screenrecord --size 1280x720 --bit-rate 6000000 --time-limit 20 --verbose /sdcard/video.mp4

This command will start recording video with a resolution of 1280 x 720 (if you do not specify, then the native screen resolution of the device will be used), with a bitrate of 6 Mbps, 20 seconds long (if you do not specify, then the maximum value will be set to 180 seconds), with display logs in the console. The recorded video will be located in / sdcard (video.mp4 file).

INFO

All launched from the console and in adb shell processes that take some time to complete can be interrupted by pressing Ctrl + C. Exit the shell and return to normal adb commands - Ctrl + D.

Application management

There are two commands used to manage applications: pm(package manager) - package manager and am(activity manager) - activity manager. These commands have many keys that can be viewed on the developer portal. Let's dwell on a few.

First, let's get a list of applications installed on the device in the form of package names, which will come in handy later:

Continuation is available only to subscribers

Option 1. Subscribe to "Hacker" to read all materials on the site

Subscription will allow you to read ALL paid materials on the site within the specified period. We accept payments by bank cards, electronic money and transfers from the accounts of mobile operators.

Many have heard of adb, many have used adb and know the power of the console. It's time to simplify the interaction with this functionality through the Adb Run program. You can find out in detail in this review.

The essence of the Adb Run program is that many users who use adb use typical commands and actions, and it automates them and makes it easier for the user to access the console.

As you can see, the program has a console form and currently consists of 14 items, the control in the program is as follows: transitions from the menu to the menu using numbers, confirmation of the selection by the Enter button

Instruction-Overview of the ADB RUN program

Now let's take a short look at all the menu items in the Adb Run program.

1. Is the item Device attached? - checks if the smartphone is connected to the PC (do not forget to enable USB debugging on the Android device)

2. Item Move - moving files from Android to PC and PC to Android. These points contain both "typical" options, as well as manual control.

3. Item Install Android App to Device - installation of applications on Android, options for settings are possible to save data, move to a memory card.

4. Item


7. The Manual item is responsible for itself, here you can enter commands manually, there is an item that allows you not to enter adb all the time, but to write a command right away, unlock Booltolader Nexus and Sony devices

In the additional HTC Menu, the ability to - unlock the HTC bootloader, get S-OFF

8. Check Update check for a new version of the Adb Run program

10. Item Memory and Partition allows you to find out everything about the existing blocks and partitions of Android

(1 Voice)
Details Category: Miscellaneous

Adb Run is a handy program in Russian that will help you manage all ADB commands for android. With this application, you will be able to link your computer with your phone or tablet. Almost any PC with Windows of any version is suitable for this: XP, 7, 8, 10. Before installing, make sure that you have all the latest drivers you need installed. Only then is correct operation guaranteed. The Adb Run installer unpacks to the root of the C drive. This makes it much easier to use without having to specify where to install it. A unique manager will help you in management, in which the most popular commands have already been entered and you do not need to enter them manually, just select the necessary one and send a request automatically. This will make your life much easier. Turn on updates and you will be the first to get the latest Adb Run update and download it to your device. Do not forget to enable USB debugging in the settings, otherwise the application will not work.

Features of Adb Run:

  • Fast installation
  • Automated panel
  • Help for beginners
  • Nice interface
  • Correct Russian translation


If you have an Android phone or tablet, then you probably want to connect it to your Windows 10 device, for example, to transfer files. In this case, we recommend downloading ADB drivers for Windows 10 - special file libraries that simplify the operation of two devices on different OS.

Peculiarities

As a rule, there is no need to download ADB drivers for Windows 10 if all you need is to transfer the files. These drivers have a much broader purpose:
  • Transfer files from device to device;
  • Get ROOT rights to Android OS;
It is for the sake of the latter that the driver data is downloaded. The full name of the abbreviation ADB is Android Debug Bridge, all other decryptions are erroneous versions. On this page we offer a universal driver package in its most current version. It is universal in all respects at once, it is suitable for any Android device, for any version of this OS, and will also allow you to connect your phone or tablet to Windows 10 x64, as well as to the 32-bit version.

If this version of the drivers suddenly does not suit you, then do not worry, you can always download it - this is a universal program for automatically searching for and installing any drivers, including ADB.

Despite the fact that the program is completely free, it is very functional. Russian and English versions are available. For those who want to simultaneously download an anti-virus program in order not to infect their smartphone, we recommend using

Top related articles