Log retrieval via ADB in kiosk modeSolved

Participant
Discussion
4 days ago Mar 01, 2026

Hi everyone, 

We are currently setting up a fleet of Android tablets in a locked kiosk for our field technicians. Our internal reporting app saves data locally, and we need a way to pull those logs daily without exiting the kiosk or giving the techs access to the android file system. 

Our goal is to have the office staff plug the tablets into a PC and use ADB commands to copy and paste the logs directly to a central server. Has anyone successfully used adb for file transfers while the device is actively locked in hexnode’s kiosk mode? 

Replies (1)

Marked SolutionPending Review
Participant
3 days ago Mar 02, 2026
Marked SolutionPending Review

Hi @stevenhere,

I actually reached out to the Hexnode support team about a similar workflow last month for our inventory project. They confirmed that as long as the device is properly enrolled and the right restrictions are toggled, ADB remains a very reliable backdoor for file management without needing to touch the tablet’s screen.

You’ll want to double-check your policy first: go to Policies > Android > Restrictions > Basic and ensure the USB file transfer option is enabled. Even in kiosk mode, this allows the underlying Usb debugging bridge to function.

Here is the exact method I’ve been using to move our content:

To Pull Data from the Tablet to your PC:

Use the command: adb pull <source-path> <destination-path>

  • Example: adb pull /sdcard/Documents/DailyLogs.csv C:\Office\FieldReports
  • Note: If you don’t specify a destination path, the file will just drop into whichever folder your command prompt is currently targeting.

To Push Data from your PC to the Tablet:

Use the command: adb push <source-path> <destination-path>

  • Example: adb push C:\Office\Updates\Manual.pdf /sdcard/Download/

This has been a lifesaver for us because it keeps the technicians out of the settings while letting the office team grab what they need.

Save