tags:

views:

33

answers:

1

How can I get a list of all of the printer drivers and fax drivers from the OS?

+1  A: 

Well I am not sure if it is the answer that you are looking for but you can get the name of all installed printers on the local machine with the following code:

foreach (String printer in System.Drawing.Printing.PrinterSettings.InstalledPrinters)
{
    //Do your stuff
}
Francis B.