Installing and Adding a network printer for all Users

Adding a Network Printer For all users In Windows XP, 2000, and Windows 2003

Windows 2000, XP and 2003 have the capability to have a Network Printer so that it is automatically available to any user that logs on at that computer. Unfortunately, the Add Printer wizard does not expose that capability - it can only add a Network Printer for the currently logged on user. So to add a printer globally (for all users) you have to a different tool.

The PrintUIEntry function of printui.dll has options for performing most printer management functions. It can perform these functions either on the same computer that printui.dll is running on or on another computer (i.e remotely). The general purpose rundll32 command can be used to execute PrintUIEntry function of printui.dll.

Some things to keep in mind:

* The function for adding a printer globally is /ga. Globally in this context means that the action applies to all
and any users that happen to logon at the target computer.
* The corresponding function for deleting a printer globally is /gd. If you attempt to delete a global printer by using
the
* Delete function in the printer's context menu, it will appear to delete, but will reappear when the Print Spooler
service is restarted.
* Only printers previously added using the /ga function can be deleted using /gd.
* You have to have administrative rights and permissions on the target computer to use these functions.
* If a printer is added remotely using the /ga function, it will not appear to the user until the Print Spooler service
is restarted or the user next logs on. You can restart the print spooler remotely using these commands:
sc \\targetcomputername stop spooler
sc \\targetcomputername start spooler

Like any other commands these commands can be used inside a command file, such as addglobalprinterremotely (see below).
Here's a way of "installing" network printers on workstations so that they are available to all users (remotely).

Create a text file and paste (or key) the following into the .cmd file (e.g. AddGlobalPrinterRemotely.cmd)

rundll32 printui.dll,PrintUIEntry /ga /c\\%1 /n\\%2
start /wait sc \\%1 stop spooler
start /wait sc \\%1 start spooler

abc pserver\p1
Then, at a command prompt key:

addglobalprinterremotely targetcomputername printservername\printersharename

For example to install the printer \\pserver\p1 on the workstation abc:

addglobalprinterremotely
To find out more about the rundll32 printui.dll,PrintUIEntry command, key (case sensitive):

rundll32 printui.dll,PrintUIEntry /?

Here's some details:

/c specifies the computer which is to be the target of the requested action.

If /c is not specified, the local computer is assumed. In other words, the /c option allows you to do printer management things on other computers without actually physically being there (i.e. remotely).

/n specifies which network printer is to be, in this case, added using the printer's UNC name ( \\servername\printersharename ).

/? is understood by PrintUIEntry to be a request for its Help information, which is displayed in a separate window.

The "start /wait" command runs the command (e.g. sc), then waits until the command actually terminates. Stopping and starting the print spooler takes a while, so without this, the next command (e.g. sc ... start spooler) may run before the spooler is actually stopped.

Thanks!!
HP Answers

No comments:

Post a Comment