Posted on 07-20-2015 12:46 PM
Hello everyone,
I'm trying to create a policy that caches the new Office 2016 pkg for my users.
However after the policy runs, the logs show it was completed but a closer look
shows this error:
cp: /Volumes/CasperShare/Packages/Microsoft_Office_2016_Installer.pkg: Permission denied
Anyone know what the problem might be?
Posted on 07-20-2015 01:08 PM
Looks like the permissions on the installer are screwed up and/or the Casper read only account doesn't have permission to read the pkg.
Try running in Terminal the following:
ls -la /Volumes/CasperShare/Packages/Microsoft_Office_2016_Installer.pkg
What do you get?
Posted on 07-20-2015 01:21 PM
probably have to sudo -u casperadmin ls -la /Volumes/CasperShare/Packages/Microsoft_Office_2016_Installer.pkg
depending on the permissions on the share, the user you are logged in as may not have permission to read the share.
mount -v might be a good place to start as well to help you figure that out.
Posted on 07-24-2015 12:58 PM
Thanks nessts!