Network printers and the PrintServer.GetPrintQueues method

5.1k Views Asked by At

I have a feeling that the PrintServer.GetPrintQueues method does not return the network printers.

If this one is true, what other choices do i have?

2

There are 2 best solutions below

0
On BEST ANSWER

After a lot of Googling the GetPrintQueues method do return the network printers too with aid of EnumeratedPrintQueueTypes()

Private enumerationFlags As EnumeratedPrintQueueTypes() = {EnumeratedPrintQueueTypes.Local, EnumeratedPrintQueueTypes.Connections}

More information can be found here

0
On

Windows Management Instrumentation.

See here for an example of now to get the network printers using WMI.