1

I am trying to add an Epson XP-610 printer to every endpoint's Printer Driver Store in our environment. Does anyone know a way to push a printer driver and stage it so it appears in the list of options under the 'Add a Printer' wizard?

The printer is discoverable on this network, but the drivers are not visible in the Add a Printer' list and I do not want to have to manually install this on over 300 endpoints.

The background of is that this printer will only work on a specific vehicle that is on a completely different network. Adding it via IP through GPO isn't going to work so I need to stage the drivers and make sure the model appears in this list so individuals can install it on their own when connecting to the printer through the vehicles WiFi.

bh2win
  • 11

2 Answers2

1

Get the printer drivers and extract them so the INF is visible.

Some times its easier to get the file from the windows repository.

Install the driver on this computer even if you don't attach printer to it.

C:\Windows\System32\DriverStore\FileRepository

You should find a folder with a matching name.

Open and Administrative command prompt Windows has built-in scripts for you

cd C:\Windows\System32\Printing_Admin_Scripts\en-US>

now the script you need:

cscript prndrvr.vbs -a -m "driver" -v 3 -e "Windows IA64" -i c:\temp\drv\drv.inf -h c:\temp\drv -s **computer name** -u administrator -w password

For the username and password you can use the local credentials or domain credentials.

You will have to modify each of the parameters to meet your needs

-m     - driver model name  (The model name has to be exactly as it is written in the INF file.
-v     - version probably leave it 3
-e     - environment  "Windows {NT x86 | X64 | IA64}"
cybernard
  • 14,924
0

https://technet.microsoft.com/en-us/library/cc731292(v=ws.11).aspx

That page leads to 2 links on how to deploy your printers via Group Policy. Here's the steps, in case that links ever dies:

Open Print Management.

In the left pane, click Print Servers, click the applicable print server, and click Printers.

In the center pane, right-click the applicable printer, and then click Deploy with Group Policy.

In the Deploy with Group Policy dialog box, click Browse, and then choose or create a new GPO for storing the printer connections.

Click OK.

Specify whether to deploy the printer connections to users, or to computers:

To deploy to groups of computers so that all users of the computers can access the printers, select the The computers that this GPO applies to (per machine) check box.

To deploy to groups of users so that the users can access the printers from any computer they log onto, select the The users that this GPO applies to (per user) check box.

Click Add.

Repeat steps 3 through 6 to add the printer connection setting to another GPO, if necessary.

Click OK.