Specify printers for OU's?

  • Thread starter Thread starter Chris Dove
  • Start date Start date
C

Chris Dove

Is it possible to specify printers for each PC in an OU rather than manually
having to install them on each PC?

Thanks

Chris
 
Hello Chris

You can alsways asgin a script with Group Policy for an OU.

This code sampel comes from Microsoft Technet Script Center:

Set WshNetwork = CreateObject("WScript.Network")
WshNetwork.AddWindowsPrinterConnection "\\PrintServer1\Xerox300"
WshNetwork.SetDefaultPrinter \\PrintServer1\Xerox300

i will strongly recommend Microsot Technet Script Center if you works with
script.

Microsoft Technet - Script Center Printing:
http://www.microsoft.com/technet/treeview/default.asp?url=/technet/scriptcenter/default.asp

Microsoft Technet - Script Center:
http://www.microsoft.com/technet/treeview/default.asp?url=/technet/scriptcenter/default.asp
 

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

Back
Top