Is there a straightforward way to enumerate all visible network printers in .NET? Currently, I'm showing the PrintDialog to allow the user to select a printer. The problem with that is, local printers are displayed as well (along with XPS Document Writer and the like). If I can enumerate network printers myself, I can show a custom dialog with just those printers.

Thanks!!

link|improve this question

AvailablePrinterInfo is in which namespace?getting as Error The type or namespace name 'AvailablePrinterInfo' could not be found (are you missing a using directive or an assembly reference – Apple Nov 3 '11 at 7:42
feedback

6 Answers

up vote 5 down vote accepted

found this code here

 private void btnGetPrinters_Click(object sender, EventArgs e)
        {
// Use the ObjectQuery to get the list of configured printers
            System.Management.ObjectQuery oquery =
                new System.Management.ObjectQuery("SELECT * FROM Win32_Printer");

            System.Management.ManagementObjectSearcher mosearcher =
                new System.Management.ManagementObjectSearcher(oquery);

            System.Management.ManagementObjectCollection moc = mosearcher.Get();

            foreach (ManagementObject mo in moc)
            {
                System.Management.PropertyDataCollection pdc = mo.Properties;
                foreach (System.Management.PropertyData pd in pdc)
                {
                    if ((bool)mo["Network"])
                    {
                        cmbPrinters.Items.Add(mo[pd.Name]);
                    }
                }
            }

        }

Update:

"This API function can enumerate all network resources, including servers, workstations, printers, shares, remote directories etc."

http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=741&lngWId=10

link|improve this answer
+1 Thanks! I can enumerate just the names of installed network printers with a few small adjustments to this code. Now, do you know if one can enumerate all VISIBLE network printers (not just the installed ones) using a similar technique. – Pwninstein Jun 19 '09 at 14:59
try this article : planet-source-code.com/vb/scripts/… "This API function can enumerate all network resources, including servers, workstations, printers, shares, remote directories etc." I hope it helps, cheers – Andrija Jun 19 '09 at 15:13
feedback
  • Get the default printer from LocalPrintServer.DefaultPrintQueue
  • Get the installed printers (from user's perspective) from PrinterSettings.InstalledPrinters
  • Enumerate through the list:
  • Any printer beginning with \\ is a network printer - so get the queue with new PrintServer("\\UNCPATH").GetPrintQueue("QueueName")
  • Any printer not beginning with \\ is a local printer so get it with LocalPrintServer.GetQueue("Name")
  • You can see which is default by comparing FullName property.

Note: a network printer can be the default printer from LocalPrintServer.DefaultPrintQueue, but not appear in LocalPrintServer.GetPrintQueues()

    // get available printers
    LocalPrintServer printServer = new LocalPrintServer();
    PrintQueue defaultPrintQueue = printServer.DefaultPrintQueue;

    // get all printers installed (from the users perspective)he t
    var printerNames = PrinterSettings.InstalledPrinters;
    var availablePrinters = printerNames.Cast<string>().Select(printerName => 
    {
        var match = Regex.Match(printerName, @"(?<machine>\\\\.*?)\\(?<queue>.*)");
        PrintQueue queue;
        if (match.Success)
        {
            queue = new PrintServer(match.Groups["machine"].Value).GetPrintQueue(match.Groups["queue"].Value);
        }
        else
        {
            queue = printServer.GetPrintQueue(printerName);
        }

        var capabilities = queue.GetPrintCapabilities();
        return new AvailablePrinterInfo()
        {
            Name = printerName,
            Default = queue.FullName == defaultPrintQueue.FullName,
            Duplex = capabilities.DuplexingCapability.Contains(Duplexing.TwoSidedLongEdge),
            Color = capabilities.OutputColorCapability.Contains(OutputColor.Color)
        };
    }).ToArray();

    DefaultPrinter = AvailablePrinters.SingleOrDefault(x => x.Default);
link|improve this answer
feedback

PrinterSettiings.InstalledPrinters should give you the collection you want

link|improve this answer
1  
PrinterSettings.InstalledPrinters still shows non-network printers, as well as document printers (PDF Writer, XPS Document Writer, etc). – Pwninstein Jun 19 '09 at 14:57
feedback

a good place to start

link|improve this answer
I would prefer to use as little unmanaged code as possible (preferably none). Thanks for the link, though! – Pwninstein Jun 19 '09 at 15:01
feedback

You can use WMI, here is LinqToWMI Api LINQ to WMI

link|improve this answer
feedback

using the new System.Printing API

using (var printServer = new PrintServer(string.Format(@"\\{0}", PrinterServerName)))
{
    foreach (var queue in printServer.GetPrintQueues())
    {
        if (!queue.IsShared)
        {
            continue;
        }
        Debug.WriteLine(queue.Name);
     }
 }
link|improve this answer
This only lists local printers, not network printers. – awe Jan 12 '10 at 14:23
awe: try the updated code – Simon Jan 12 '10 at 22:30
feedback

Your Answer

 
or
required, but never shown

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