Default printer

G

Gerry Goldberg

Is there any way to force the default printer assignment to apply to any/all
users of a specific workstation? It appears to me that this assignment is
unique to each user of the specific workstation. I would like to force the
default to apply to all users of this workstation. Can the default be forced
by a network administrator?

Thanks,

Gerry Goldberg
 
D

David Candy

This logon script maps drives and installs printers and makes a printer the default. Fill it in with your own info.

On Error Resume Next
Set WshNetwork = WScript.CreateObject("WScript.Network")
Set WshShell = WScript.CreateObject("WScript.Shell")
strDriveHarasty = "Z:"
strDriveMorestaff = "Y:"

WshNetwork.MapNetworkDrive strDriveHarasty, "\\Server5\Share"
ReportErrors "Mapping Drive."
WshNetwork.MapNetworkDrive strDriveMorestaff, "\\Server5\Share"
ReportErrors "Mapping Drive."

WshNetwork.AddWindowsPrinterConnection "\\davidcan\HP Laser Jet 6L"
ReportErrors "Adding Printer."
WshNetwork.SetDefaultPrinter "\\h8\HP Laser Jet 6L"
ReportErrors "Setting Default Printer."
 

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