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
 
Back
Top