Hello,
does anyone have the programming code in java script for reading the Hardware-UUID?
Terminal command from stackflow:
ioreg -rd1 -c IOPlatformExpertDevice | awk '/IOPlatformUUID/ { split($0, line, "\""); printf("%s\n", line[4]); }'
I want Tap Forms to read the Hardware-UUID and write it to a field on every change of an entry. The next step could be to add a log entry (in a log form) for changes … on every change a new entry in the log form will be generated (one time calculation)…
Thanks a lot
Chris
Hi Chris,
I haven’t written an interface to get the hardware UUID.
But you can get the device name using this code:
var deviceName = Utils.getDeviceName();
Thanks,
Brendan