Printing lots of PDFs with Powershell

We get invoices as attachments saved to a folder from our email. Here’s a little script I wrote to print out all of the PDFs from that folder.

cd 'C:\users\YOUR PATH HERE\'
dir 'C:\users\YOUR PATH HERE\' *.pdf | %{ Start-Process $_.FullName -Verb Print -PassThru }

Leave a comment