

- #Printer prints document properties word starter pdf#
- #Printer prints document properties word starter trial#
The cmdlets are structured in a very distinct way. Hi Cheryl, Powershell is a scripting language that uses what are called cmdlets. If you try Febooti out and need any help getting a script hooked up to do this, just let me know. After a month you will occasionally get a popup, but that’s the only limitation.
#Printer prints document properties word starter trial#
If you’re interested in trying that method, you can download Febooti here: The trial version works forever. Then you can just write a simple script, and hook it up as a Febooti action and forget the Folder watcher stuff. There are other complexities too, which is why I prefer to use Febooti for this type of thing.
#Printer prints document properties word starter pdf#
If you wanted it to work when a Pdf was modified, you would have to add ‘Changed’ to the -EventName parameter list. For example, this will only work for Pdf files that are created in that folder. You can run into complexities with this method though. Again, just change “C:\DocsToPrint” to the actual path you want watched. Unfortunately, I don’t have a Windows machine to test that on right now, but it should work. Start-Process –FilePath “c:\docstoprint\doc1.pdf” –Verb Print -PassThru | % | kill With one side effect, Adobe was left open after the print job. I was able to print the pdf document to my default printer. Start-Process –FilePath “c:\docstoprint\doc1.pdf” –Verb Print Then I found another command I could use. Get-content c:\docstoprint\doc1.pdf | Out-PrinterĪll that would get me is several pages worth of useless garbage. However since a pdf document is not plain text I couldn’t use this command. This would be a great way to use PowerShell! So here is what I did.įirst I started experimenting with the Out-Printer cmdlet to see if I could use that. Occasionally we would run into issues where the computer was rebooted and as a result the reports would not be printed out in the morning. We had a little utility that could do this (and more) but the problem with it was that the computer running the utility had to be logged in and the utility had to be launched.


The users want them printed and waiting for them each morning on a specific printer. My office has a series of nightly reports from SQL Server that export as Adobe documents.
