Printing using SSIS

  • Can we autoprint a PDF from a network drive to a network printer using SSIS ?and I would like to schedule that SSIS package in a SQL job.

    Thanks

  • If you can find the command-line syntax, you should be able to use an Execute Process task to do this.

    Here is a possible way of doing it.

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • You can do it using command line -

    AcroRd32.exe /t <file.pdf> <printer_name> <printer_driver> <printer_port>

    Eg: 2Printer.exe -s "C:\In\*.PDF" -prn "HP LasetJet 1100"

    Or, you can do it using Scrip Task in C# code.

    ____________________________________________________________

    AP

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply