Hi Joe,
Thanks for your request,
We could achieve this configuration using "Custom script" configuration in MAC. Please upload the files to be copied as dependency files and write a script to copy those files to destination folder,refer the sample script and configuration screenshot for better clarity.
Trust this helps and revert for any clarifications.
Thanks for your request,
We could achieve this configuration using "Custom script" configuration in MAC. Please upload the files to be copied as dependency files and write a script to copy those files to destination folder,refer the sample script and configuration screenshot for better clarity.
Sample Script#!/bin/bashditto ./filename.txt /Volumes/Official/filename.txterrcode=$?#echo "Error code of previous command: $errcode"if [ "$errcode" -ne 0 ];thenecho "failed to copy filename.txt"elseecho "successfully copied filename.txt"chmod 777 /Volumes/Official/filename.txtfiditto ./filename2.txt /Volumes/Official/filename2.txterrcode=$?#echo "Error code of previous command: $errcode"if [ "$errcode" -ne 0 ];thenecho "failed to copy filename2.txt"elseecho "successfully copied filename2.txt"chmod 777 /Volumes/Official/filename2.txtfiexit 0 .
Trust this helps and revert for any clarifications.
Regards,
-----
-----
Leonard J
Technical Consultant
Technical Consultant
Desktop and Mobile Device Management Solution
Direct Support : +1 408 916 9886
Toll Free: +1 888 720 9500 (US) | 0800 028 6590 (UK) | +1 800 631 268 (AUS)