What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Solved Batch file xcopy pc to android how to

mark7atl

New Member
Looking for help in using batch file to xcopy from pc to android. Heard I need adb on pc. Not familiar with adb, and am currently searching for help on the web to install adb on my W10.
 
All you really need for ADB is the ADB file. The sdk is good if you're doing more with Android, but not necessary.

This is how I setup ADB. Make a folder on your C drive & place the ADB file in that folder. Right click on my computer for properties & go to system variables. Set ADB as a path. Then plug in your phone & install any drivers. Making sure USB debugging is enabled in developer settings, open command prompt and type "ADB devices". It should now show your device connected

Tapped from a Nexus 6
 
All you really need for ADB is the ADB file. The sdk is good if you're doing more with Android, but not necessary.

This is how I setup ADB. Make a folder on your C drive & place the ADB file in that folder. Right click on my computer for properties & go to system variables. Set ADB as a path. Then plug in your phone & install any drivers. Making sure USB debugging is enabled in developer settings, open command prompt and type "ADB devices". It should now show your device connected

Tapped from a Nexus 6
Forgot about that.

You could just set a path in the batch file as well, or execute it from the same folder adb is in.
 
All you really need for ADB is the ADB file. The sdk is good if you're doing more with Android, but not necessary.

This is how I setup ADB. Make a folder on your C drive & place the ADB file in that folder. Right click on my computer for properties & go to system variables. Set ADB as a path. Then plug in your phone & install any drivers. Making sure USB debugging is enabled in developer settings, open command prompt and type "ADB devices". It should now show your device connected

Tapped from a Nexus 6
Thanks CJM for the info. I am working on setting it up per your instructions. This is a little over my head, but I am learning.
 
  1. Download the attached ADB_Files.zip.
  2. Create a new folder in root of C. ADB is the easiest to remember
  3. Extract the files to ADB
  4. Plug in your phone with a USB cable. Make sure USB Debugging is enabled
  5. Open a new CMD screen (Win key + R, type in CMD)
  6. Change the working directory to C:\ADB ( CD C:\ADB)
  7. Type in ADB version, what displays? I see Android Debug Version XXX
Once you're that far, we'll keep going.
 

Attachments

  1. Download the attached ADB_Files.zip.
  2. Create a new folder in root of C. ADB is the easiest to remember
  3. Extract the files to ADB
  4. Plug in your phone with a USB cable. Make sure USB Debugging is enabled
  5. Open a new CMD screen (Win key + R, type in CMD)
  6. Change the working directory to C:\ADB ( CD C:\ADB)
  7. Type in ADB version, what displays? I see Android Debug Version XXX
Once you're that far, we'll keep going.
Working on it. Back in a few. Thanks.
 
  1. Download the attached ADB_Files.zip.
  2. Create a new folder in root of C. ADB is the easiest to remember
  3. Extract the files to ADB
  4. Plug in your phone with a USB cable. Make sure USB Debugging is enabled
  5. Open a new CMD screen (Win key + R, type in CMD)
  6. Change the working directory to C:\ADB ( CD C:\ADB)
  7. Type in ADB version, what displays? I see Android Debug Version XXX
Once you're that far, we'll keep going.
Android Debug Bridge version 1.0.32
Revision eac51f2bb6a8-android
 
Back
Top