Link to home
Start Free TrialLog in
Avatar of tgarrity
tgarrityFlag for United States of America

asked on

Networked Printer Deployment via Group Policy

This question is in regards to printer deployment via Group Policy.

Our domain controller is running Server 2008 R1 x64.

My question is whenever a networked printer is "pushed" to a desktop PC what type of port is using? Is it using the standard TCP / IP port or is it using somesort of virtual port?

Please advise, thanks.
Avatar of Spike99
Spike99
Flag of United States of America image

We just use log on scripts that map printers for users.  you can put the script on a file server & just point the GPO to that path for the logon script.

Here's the syntax:
      rundll32 printui.dll,PrintUIEntry /in /q /n\\servername\printername

Add the "/y" switch to the command for the default printer:

     rundll32 printui.dll,PrintUIEntry /in /q /y /n\\servername\printername

   /in  = network printer
   /q   = run quietly

We don't use the scripts to install the drivers, we just use them to map the network printers.  You can install the driver with this command.  Here's a page with some examples of how to do that:

     http://techsupt.winbatch.com/ts/T000001031F17.html

Alicia
On all my Server 2008 machines I use Group POlicy to deploy all network printers.

So after installing the printer on the Server and sharing out accordingly, you can use Print Management from Administrator Tools to deploy Printers - what client machines are you pushing the printers to?
Avatar of tgarrity

ASKER

Flipp:
Have a mix of Windows 7 Pro and XP Pro client machines
Thanks
Perfect, so this is how I manage multiple OS for Network Printer Deployment:
1. Setup Printer on Server - You must install the printer on the Server and share out (this should be straight forward).
2. Add Print Management role via Server Manager
3. Setup Group Policy
 3a. Apply GPO at root of Domain with following:
Policies >Windows Settings > Scripts > Logon > PushPrinterConnections.exe
(This is required for all XP clients to apply printers via GP.

PushPrinterConnections.exe.txt
ASKER CERTIFIED SOLUTION
Avatar of Flipp
Flipp
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks!