I want to print multiple files (PDF-files) to my default printer using a batch file.
I have a folder on this location C:\Temp\Print\
In this folder I have two PDF-files. I have created a simple .bat file, and when I run it the command window says that both files is currently being printed. When I go to the printer only one PDF-file is printed, not both..
What am I missing..??
Here is the code in my .bat file:
print C:\TEMP\Print\* /d:\\"MyDefaultNetworkPrinter"
;pause
I would like for all PDF-files to be printed when located in the C:\Temp\Print\ folder when I run the script.