Remotely install printers + AD

  • Thread starter Thread starter Mig45
  • Start date Start date
M

Mig45

Hi All

Help me

I need remotely install network printers to multiple users .

Xerox,HP printers with mapping "local port"

W2K DC with AD + WK2K,XP users .

Its possible install remotely with AD+GPol ?

How pls ?

Thx Petr
 
Petr, You can use a logon script within a Group Policy to do so see the link
below and a good script to start with.

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

Please see the link below for more information:
http://www.microsoft.com/technet/community/scriptcenter/printing/scrprn01.mspx
 
Back
Top