Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printer "Migration" Question

Status
Not open for further replies.

psychonaut2000

Technical User
May 8, 2003
61
US
We are migrating our users from Novell to Microsoft File & Print Servers. The site in question has maybe 50 users. I've been asked to go to each workstation and remove the NDPS Printers and re-install them from the new server. This seems to me to be an obviously inefficient manner of addressing this issue? Couldn't this be automated via a login script or other such method? Can you add a printer entirely by running a .reg file?

Perhaps a more open-ended question would work better. Given a similar scenario, how would you go about installing printers?

One issue that comes to mind is that not all users use all printers at that facility. Being that it's much quicker to delete a printer than to add one I think it might be acceptable to add all printers for all users, via login script, etc, and then manually delete, or allow the user to delete, any uneeded printer(s).

Thanks in advance for any suggestions.
BTW..this needs to happen tomorrow! : )

 
You can use vbscript to install printers.

Allow me to demonstrate.

Set oNetwork = CreateObject("WScript.Network")
oNetwork.AddWindowsPrinterConnection "\\server\printer"

also

oNetwork.SetDefaultPrinter "\\server\printer"
 
Not having worked with vbscripting before. How, specifically, would I create and execute such a script so that desired printers would be installed on the machines of my choosing.

Thx!
 
What I have done, is the following. I created a share and in the share I have created .bat file that will install printers. The end-user can access this share, select the printer they want to install, double click on the .bat file, and the printer gets installed. All the .bat files contain the following:

rundll32 printui.dll,PrintUIEntry /in /n \\server\printer

This way, I do not have to visit the workstation each time a user need to add a printer.

Jim

Jim Webber
Network Administrator MCSE CNA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top