USB file transfer in kiosk mode with no user interaction

expand collapsive

Hey folks, we’ve got some android phones and tablets set in kiosk mode. But now we need to use usb cable to send photos and docs from a pc to the devices. Main problem we are facing we have disabled the notification panel so users cant drag it down and interact with it. So no user interaction there. Also its crucial for us that device continues in kiosk mode. So taking it out of kiosk is a no go.
Is there any workaround for this?

Any ideas/suggestions are welcome.

All Replies

  • Hello @Damari, thank you for reaching out to us, although it looks like @Milena has got you covered!
    As an alternative, if you have enabled developer options in your device and have Android SDK and ADB up and running on your computer, you can make use of the ADB push and pull commands to transfer files.

    Pull a file from your Android device using: 

    adb pull <path-to-file>

    Add the location of the file you are pulling and the location you want it to go.
    Ex: adb pull /sdcard/audio.mp3 C:\Users\Emma\Desktop

    If you choose to omit the local save location, the file will be saved in the same location as your adb.exe

    Push a file to your Android device using: 

    adb push <path-to-file>

    Add the local location of the file and the location to save it on the Android device.
    Ex: adb push C: \Users\Emma\Desktop\audio.mp3 /sdcard/

    Try it out, and keep me posted on any updates.

    Have a great day!
    Emma Jones
    Hexnode UEM

    • This reply was modified 2 years, 2 months ago by  Emma Jones.
    • This reply was modified 2 years, 2 months ago by  Emma Jones.
    • This reply was modified 2 years, 2 months ago by  Emma Jones.