up vote 2 down vote favorite
1
share [g+] share [fb]

We are developing a critical application and need to have the finest control over the documents printed. To be sure on which documents are printed or not we want to check the printer queue.

How can we query the print queue on Windows (status, queue list, errors, ...)?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 2 down vote accepted

EnumPrinters to get the list of printers, EnumJobs to get a list of jobs for that printer. GetJob to get info on a specific job and SetJob to change the settings for that job (pause or cancel it)

See more in the Printing and Print Spooler References

.NET has the PrintQueue and PrintServer classes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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