Posted on 09-09-2011 05:33 AM
I was looking for a managed preference template on giving users the ability to add printers (no admin access) but I couldn't find one. Does anyone know how I can add the ability for users to add printers, repair permissions and clean out caches as they do not have admin rights?
Thanks
![external image link](attachments/dbcff60603814dc3af06e8e55d413e5b)
Neal Smith | MAC Systems Engineer | Perrigo IT
Posted on 09-09-2011 06:37 AM
You need to add them to the _lpadmin group. Here is an example of a
log in script you can have Casper run.
#!/bin/bash
#add current logged in user to _lpadmin at log in
dscl . append /Groups/_lpadmin GroupMembership $3
exit 0
![external image link](attachments/49bf8d0eb24e423ebf89156b8710c7f6)