Wiki Markup |
---|
h2. Traditionally, installing printers on both Windows and Macs requires administrative credentials. In some cases, departments may want to allow users to install printers without administrator privileged. |
...
Allowing regular user accounts to install or remove printers can eliminate some of the ticket work of managing printers by allowing users to install their own local printers (especially at home), remove old printers no longer available, or install printers from a print server, all without the assistance of IT. |
...
Windows solutions
On Windows computers, regular user accounts can actually add printers as long as the drivers for the printer are already installed. There are 2 settings that need to be changed.
Mac solutions
On OS X based computers, the simplest solution is adding everyone to the lpadmin group. This enables regular user accounts to add, remove and modify printers.
This can be done with the following command in terminal:
Code Block |
---|
h4. Windows solutions On Windows computers, regular user accounts can actually add printers as long as the drivers for the printer are already installed. There are 2 settings that need to be changed. * Disable "Point and Print Restrictions" via GPO or Local Security Policy * Enable "Allow non-administrators to install drivers for these device setup classes" on the following classes: ** {4d36e979-e325-11ce-bfc1-08002be10318} ** {4658ee7e-f050-11d1-b6bd-00c04fa372a7} h4. Mac solutions On OS X based computers, the simplest solution is adding everyone to the lpadmin group. This enables regular user accounts to add, remove and modify printers. This can be done with the following command in terminal: {code} /usr/sbin/dseditgroup -o edit -n /Local/Default -u administrator -p -a everyone -t group lpadmin {code} Make sure to substitute the name of the local administrator account above it is named something other than administrator. |