Printer queue permissions

R

Ray Collins

Hi,

Is it possible to remove the everyone read default permission and replace it
with Authenticated Users read permission on a local print queue?

If it is possible could somebody please give me a hint or two on how to do
it ?

Thanks in advance.
 
A

Alan Morris

You will need the setprinter.exe utility from the Windows resource kit

level 3

set a printer with the security you want. View the security for that
printer, then apply the same security descriptor for a single printer or all
the printers on a system. This will work locally or targeting a remote
machine.

setprinter -examples 3
 
R

Ray Collins

Thank you.

Alan Morris said:
You will need the setprinter.exe utility from the Windows resource kit

level 3

set a printer with the security you want. View the security for that
printer, then apply the same security descriptor for a single printer or
all
the printers on a system. This will work locally or targeting a remote
machine.

setprinter -examples 3

--
Alan Morris
Windows Printing Team
Search the Microsoft Knowledge Base here:
http://support.microsoft.com/default.aspx?scid=fh;[ln];kbhowto

Ray Collins said:
Hi,

Is it possible to remove the everyone read default permission and replace it
with Authenticated Users read permission on a local print queue?

If it is possible could somebody please give me a hint or two on how to
do
it ?

Thanks in advance.
 
G

Guest

do something like this:
PRINTER_DEFAULTS pd;
pd.DesiredAccess=READ_CONTROL|WRITE_OWNER|WRITE_DAC;
OpenPrinter(
GetPrinter(,3
do something with the returned pSecurityDescriptor in PRINTER_INFO_3
SetPrinter(,3

kj
 
Joined
Jan 7, 2013
Messages
1
Reaction score
0
I have created a VBS script to call Windows 2003 Resource Kit setprinter.exe to replace all security settings on all printers on a print server. PC Review forum restrictions prevent me from posting a link, but if you search for "How to replace inheritable server permissions on printers" on social technet microsoft com, you should be able to find it.

http : // social .technet .microsoft .com / Forums / en-US / winserverprint / thread / 91067fd7-d910-4861-ba42-382425af5572
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top