Publish and automaticly install printers in AD

  • Thread starter Thread starter Bjørnar Bolsøy
  • Start date Start date
B

Bjørnar Bolsøy

Hi,


Is it possible to use GPOs/AD to automaticly install/map printers
on client computers based on their OU or group membership?



Regards...
 
Assign the script below as an logon script within a Group Policy:
322241 - HOW TO: Assign Scripts in Windows 2000:
http://support.microsoft.com/default.aspx?scid=kb;en-us;322241

Script Code

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

Microsoft TechNet Script Center:
http://www.microsoft.com/technet/community/scriptcenter/printing/default.mspx

How To filter the scope of Group Policy according to security group
membership:
http://www.microsoft.com/technet/prodtechnol/windowsserver2003/proddocs/datacenter/Filter.asp

I hope that helps.
 
Back
Top