# This script is meant to copy some files to a folder inside my sdcard # it has some requirements: # - adb installed (https://developer.android.com/studio/releases/platform-tools?hl=pt-br#downloads) # - download and extract it, the .exe file will be inside, you can add this folder to # the PATH variable # - an android device with usb debug enabled # Here, 3836-6631 its how adb recognizes my sdcard, # if you want to use the internal storage, you can change to "emulated/0". # You can discover more about your phone's file system with the # "adb shell ls /storage/" command $dest = "/storage/3836-6631/Backed_Vault" $source = "C:/Users/renato.santos/Documents/Vault" adb push $source $dest