Script to network printers

G

Gil

hi,
Can anyone tel how can I define in my login script that a network printer
will be installed to all my users. (the printer is configured here:
\\printserver\printer1 ). ?????????????
 
M

Michael Holzemer

This will do it in .VBS

' Use this script for printing to a remote print server. This is used for
farm environments
Set WshNetwork = CreateObject("WScript.Network")
PrinterPath = "\\printserver\printershare"
WshNetwork.AddWindowsPrinterConnection PrinterPath
WshNetwork.SetDefaultPrinter "\\printserver\printershare"

--
Regards,

Michael Holzemer

Please reply in newsgroup
*************************************************
 

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