VMware Workspace ONE Community
syarbrou
Enthusiast
Enthusiast

Zebra TC52x and datawedge.db

Anyone know how to do the following with Android or Zebra specifically?

 

1. Copy a file called datawedge.db to a folder path on the device.  This part not complicated.

2. chmod 777 said file after copied?

I can't seem to figure out the chmod part but it seems from other MDM vendors that document these things, that this needs to be done for the file to take when uploaded.

Reply
0 Kudos
2 Replies
sdtslmn
Contributor
Contributor

you'll need access to a terminal or shell, either directly on the device (using an app like Terminal Emulator for Android) or remotely via ADB (Android Debug Bridge) then,

1.

adb push /path/to/local/datawedge.db /path/to/device/directory/

 

2.

adb shell
cd /path/to/device/directory/
chmod 777 datawedge.db

 or

adb shell su -c "chmod 777 <file-path>"
Reply
0 Kudos
syarbrou
Enthusiast
Enthusiast

Thanks for the reply.  We have 2 settings we changed in DataWedge and the team we are setting up the devices asked if we could auto load this on over 100 devices.  If we have to do that it would take more time then to go into each device on the screen and change the two settings.

This is if I'm understanding that basically I could in theory upload the file to the device thru WS1 (not shown in reply) but unlike solutions like SOTI, I can't execute commands on the device from WS1 correct?

Reply
0 Kudos