So I would like to print all files in a folder by date without opening adobe, word, etc. What I normally do is open the folder sort by date then run the below script to print it all.
dir $path | Foreach-object{Start-Process -FilePath $_.FullName–Verb Print}