2
Hello, I am trying to make a batch that prints all the files of a folder, but in the print queue appears "document of lower level local" and in the status appears "Error - printing" What could it be? Follow my code:
@echo OFF
net use LPT2: /delete /yes
net use LPT2: \\FELIPE-PC\pdf /yes
cls
@echo %time%
dir *.jpg > LPT2:
I found this solution interesting, http://stackoverflow.com/questions/27634776/batch-multiple-image-printing-on-single-sheet, see if it helps.
– David