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.
2009-07-15 21:57:40