Click here to Skip to main content
15,891,951 members
Articles / General Programming / Printing
Tip/Trick

How to Silently Print PDFs using Adobe Reader and C#

Rate me:
Please Sign up or sign in to vote.
4.72/5 (13 votes)
28 May 2013CPOL2 min read 261.9K   25   28
Silently print PDFs.

Introduction

This tip is merely to show a way in which you can launch Adobe and send a PDF straight to the printer in one fail swoop without using a third party solution (PdfSharp/iTextSharp...etc...).

Background 

After reviewing some of Adobe's documentation on command line switches, I was able to throw together a bit of code that would send a PDF straight to the printer without any user interaction. Attempting to send a post script straight to the printer can get nasty/complicated so this is meant to be an easy solution on how to take a newly created PDF/existing PDF from your app and send it directly to the printer.

The Code Explained  

The code below is used in a console application. I know it could be easily incorporated into any GUI based desktop application as well.

Usage

  1. Print all PDFs from a defined directory:
  2. C#
    string[] files = Directory.GetFiles(@"c:\temp");
    foreach (string file in files.Where(file => file.ToUpper().Contains(".PDF")))
    {
         Pdf.PrintPDFs(file);
    }
  3. Simply print the PDF file:
  4. C#
    Pdf.PrintPDFs(filename); 

Explained: 

I am going to make an assumption that the basics of using the Process class are understood. 

C#
//Define location of adobe reader/command line switches to launch adobe in "print" mode
proc.StartInfo.FileName = @"C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe";
proc.StartInfo.Arguments = String.Format(@"/p /h {0}", pdfFileName);
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = true;   
  1. proc.StartInfo.FileName
  2. The value should be the absolute path to your Adobe Reader instance (should work with Acrobat as well). As far as I can tell in my research, most of the current versions of Adobe Reader should support the command line switches

  3. proc.StartInfo.Arguments
  4. These are your command line switches to be applied to Adobe Reader:

    • /p <filename>    => means open and go straight to print dialog
    • /h    => open adobe reader as a minimized window
  5. KillAdobe("AcroRd32");
  6. Occasionally in my usage of this code, Adobe Reader likes to stick around for whatever reason. I guess it appears proc.Close() does not have any affect on the reader, my thinking is that this is due to it trying to close in the middle of printing a file...however my brute force way to make sure the reader doesn't linger is to kill it.

So you grab all the processes that start with your process name (in our case AcroRdr32) and call the .Kill method for the process.

C#
foreach (Process clsProcess in Process.GetProcesses().Where(
          clsProcess => clsProcess.ProcessName.StartsWith(name)))
{
     clsProcess.Kill();
     return true;
}

Code in its Entirety

C#
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PdfPrinter
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] files = Directory.GetFiles(@"c:\temp");
            foreach (string file in files.Where(
                        file => file.ToUpper().Contains(".PDF")))
            {
                 Pdf.PrintPDFs(file);
            } 
        }
    }//END Class

    public class Pdf
    {
        public static Boolean PrintPDFs(string pdfFileName)
        {
            try
            {
                Process proc = new Process();
                proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                proc.StartInfo.Verb = "print";

                //Define location of adobe reader/command line
                //switches to launch adobe in "print" mode
                proc.StartInfo.FileName = 
                  @"C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe";
                proc.StartInfo.Arguments = String.Format(@"/p /h {0}", pdfFileName);
                proc.StartInfo.UseShellExecute = false;
                proc.StartInfo.CreateNoWindow = true;

                proc.Start();
                proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
                if (proc.HasExited == false)
                {
                    proc.WaitForExit(10000);
                }

                proc.EnableRaisingEvents = true;

                proc.Close();
                KillAdobe("AcroRd32");
                return true;
            }
            catch
            {
                return false;
            }
        }

        //For whatever reason, sometimes adobe likes to be a stage 5 clinger.
        //So here we kill it with fire.
        private static bool KillAdobe(string name)
        {
            foreach (Process clsProcess in Process.GetProcesses().Where(
                         clsProcess => clsProcess.ProcessName.StartsWith(name)))
            {
                 clsProcess.Kill();
                 return true;
            }
            return false;
        }
    }//END Class
}//END Namespace

Points of Interest

This is my first article/tip on CodeProject so I appreciate any feedback on how to improve this.

History 

  • 05/27/2013 - Published article.
  • 05/27/2013 - Fixed minor code sample issue.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
I'm a software developer and enjoy .net, angular, mvc, and many other different languages.

Comments and Discussions

 
QuestionHow to print PDF without Adobe Reader or Acrobat Pin
Mikhael-B15-Feb-14 21:59
Mikhael-B15-Feb-14 21:59 
AnswerRe: How to print PDF without Adobe Reader or Acrobat Pin
PabloInNz9-Mar-14 12:38
PabloInNz9-Mar-14 12:38 
QuestionSet the desired printer Pin
Member 86412729-Jan-14 18:51
Member 86412729-Jan-14 18:51 
GeneralMy vote of 5 Pin
Oleg A.Lukin27-May-13 19:22
Oleg A.Lukin27-May-13 19:22 
GeneralRe: My vote of 5 Pin
David_Wimbley28-May-13 3:27
professionalDavid_Wimbley28-May-13 3:27 
GeneralRe: My vote of 5 Pin
Latheesan1-Jul-13 0:25
Latheesan1-Jul-13 0:25 
GeneralRe: My vote of 5 Pin
Chiron H9-Sep-13 0:21
Chiron H9-Sep-13 0:21 
GeneralRe: My vote of 5 Pin
Member 1037933820-Nov-13 10:23
Member 1037933820-Nov-13 10:23 
Just thought I'd throw in my 2 cents:

I've been struggling with the opening of multiple processes. It seems for every adobe reader has a parent instance (kind of like tabs inside of IE). A master process has to run, then a child process runs within that master process.

Anyways, regardless if that's actually how it works, I came across a few other solutions for printing silently. In my case, I required to print to the non default printer. To do this, I use the following code:

C#
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WindowStyle = ProcessWindowStyle.Hidden; // this is redundant to the /h argument
startInfo.FileName = adobePath;
string args = String.Format("/h /t \"{0}\" \"{1}\"", filePath, printerName);
startInfo.Arguments = args;
startInfo.CreateNoWindow = true;
startInfo.ErrorDialog = false;
startInfo.UseShellExecute = true; // this can be true or false, works either way

Process process = Process.Start(startInfo);

if (!process.WaitForExit(7000))
{
    // Kill adobe
    process.Kill();
}


The /t argument tells adobe to terminate after the print process has finished. It will NOT kill the main process though, so the "process.WaitForExit(7000)" comes in to play. After 7 seconds, it will kill the adobe process we created.

The problem with this method is 2 fold really.

1)What if adobe opening and printing takes more than 7 seconds
2)My adobe document opened and printed in 1 second, but the program has to wait for 6 seconds before it will close adobe.

For me, I'm willing to wait the 7-10 seconds, but I'd like to have more control over what's happening (I hate relying on timing).

If you guys have any thoughts, let me know what you come up with!
GeneralRe: My vote of 5 Pin
Chiron H20-Nov-13 21:16
Chiron H20-Nov-13 21:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.