Import Files into WSA

  1. Download and Extract ADB tools
  2. Make a text file and save as filename.bat
  3. Put the commands in the bat file with the Folder Locations
    1
    2
    3
    4
    5
    echo
    cd [Platform-tools Folder Location]
    adb connect 127.0.0.1:58526
    adb push %1 [Android Folder Location]
    pause
    
  4. Drag and drop files or folders you want on the bat file to transfer into WSA,

Example

1
2
3
4
5
echo
cd E:\DL\platform-tools
adb connect 127.0.0.1:58526
adb push %1 /storage/emulated/0/DCIM
pause
Edit
Pub: 08 Feb 2023 10:11 UTC
Edit: 21 Feb 2023 14:42 UTC
Views: 556