If you need to batch print PDF attachments in Outlook, there are a few different ways to do it. The easiest way is to open the attachment in a separate window and then use the Print command on the File menu. This will open the Print dialog box, where you can specify the number of copies you want to print and select which printer to use. If you want to batch print all of your attachments at once, you can use the Windows Batch File Copy command. This will open a window that lets you select which files and folders to copy. You can also specify how many copies of each file you want to print. ..


Have you ever wanted to print every attachment you receive in your Outlook email box? Let’s say you subscribed to a free fax to PDF email service and you want them to be printed out automatically just like an old fashioned fax machine.

Here is a quick way to achieve that if you are comfortable with a little bit of VB (macro) programming.

What we showing here is to create a rule in Outlook and move the incoming fax emails into a separate subfolder. Using VB code we create a macro for you to run a print job against every email in that subfolder so you don’t have to open up the email and print the attachments one by one.

Step 1

Create a subfolder named “Batch Prints” under “Mailbox – YourName” in Outlook.

Step 2

Create a rule (from menu Tools/Rules and Alerts) in Outlook that looks like this:

Place the email address from your fax vendor in the field “email@myfaxservice.com”. In the subject line, place the persistent text that is sent from the fax vendor every time (don’t put in the text that will be altered periodically). The 3rd field “Batch Prints” is the subfolder you just created in the first step.

Step 3

Create a VB macro. First bring up the VB editor by going to Tools/Macro/Visual Basic Editor. You should see the VB editor looks like this:

Step 4

From the left side Project window, right click on the Project1 item and insert a module named Module1:

Step 5

Once the Module1 is created, copy the code below into the window on the right side as shown in the bullet #3.

Note that you might need to change the line of code that calls Acrobat to match the path on your system.

Step 6

Now the setup is complete. All the emails from your fax vendor will be moved to your “Batch Prints” when they come in. Please note, in the example, we are expecting all attachments are in PDF format so we use Acrobat acrord32.exe to print every attachment.

Using the Macro

Now, when you want to print all attachments, simply go to the macro and run the macro PrintAttachments and all attachments will be printed sequentially. Email will be deleted and moved into trash bin once it has printed.

Note: the prints are routed to your default printer so you have to make sure a valid printer driver is setup and selected.

Hope this is useful!