Office 2016 Cache Policy

realreggie
New Contributor II

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?

3 REPLIES 3

bpavlov
Honored Contributor

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?

nessts
Valued Contributor II

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.

realreggie
New Contributor II

Thanks nessts!