A SharePoint thing
Twice a year I have to print a lot of files in different formats. It's easy to do with a little PowerShell:
Get-ChildItem c:\receipt\ | ForEach-Object {start-process $_.FullName –Verb Print}
No comments:
Post a Comment