I have a batch file that prints a bunch of PDFs, and I want to be able to iterate a command over the amount of pages that the print job has sent to the printer.

Is there a CMD command to pull the page number from a specific print job? If you have a way to do it without a dependency, cool, but if not, oh well. I'll still use it.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can use wmic command to get needed information via WMI. Using

wmic printjob get

you'll get full information about all print jobs, or

wmic printjob get Caption, TotalPages

to get only a basic info.

For details see http://technet.microsoft.com/en-us/library/cc784189(WS.10).aspx and for more examples see http://www.windows-commandline.com/2011/11/manage-print-jobs-command-line.html

link|improve this answer
This would be ideal, however, attempting to pull the page number of the file could be difficult. Running WMIC printjob when an item is printing shows information about the job, however, some of the output will be blank depending on certain criteria. For example, the output for the field "JobStatus" is blank if it's the current job, however, additional jobs shows "Queued" in the output, which makes it hard to get the page# output because delims shift. – Mechaflash Jan 23 at 19:37
you can use /format:csv switch and parse the output with for command: for /f "tokens=1,2,3,4 delims=," %A in ('wmic printjob get caption^,totalpages /format:csv') do @echo.%A %B %C %D – MBu Jan 23 at 20:12
oh nice. didn't know about the get command. works beautifully. – Mechaflash Jan 23 at 20:34
Quick question: Is there a way to omit an item from the get command? looking at the switches available, I don't see one. I want to omit the node name from the query. – Mechaflash Jan 23 at 20:38
Are you using for for parsing wmic's output? If yes, just omit %A in @echo: for /f "tokens=1,2,3,4 delims=," %A in ('wmic printjob get caption^,totalpages /format:csv') do @echo.%B %C %D – MBu Jan 23 at 22:49
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.