2 thoughts on “Print All PDF Files in Folders using PowerShell

  1. This only prints one of the PDF files for me, if I change to a mapped drive on my machine:
    1. cd G: (to get the G drive)
    2. Dir “G:\folder\folder2\folder3\folder4\folder5\*.pdf” | Foreach-Object { Start-Process -FilePath $_.FullName –Verb Print }

Comments are closed.