Question : query for installed print drivers

Dear All

I am writing a windows form program.
I would like to get a list of installed print drivers on a local computer and then install 8 virtual printers that are just local copies of the selected driver

I need to give them predefined sharenames

so for example a user would have an HP installed then when they select the driver the 8 queues are installed using that driver with the share name i gave it


is that possible?

Answer : query for installed print drivers

to get list of installed printers:
1:
2:
3:
4:
5:
6:
using System.Collections.Generic;
using System.Drawing.Printing;
using System.Linq;

List<string> installedPrinters = new List<string>();
installedPrinters.AddRange(PrinterSettings.InstalledPrinters.Cast<string>());
Random Solutions  
 
programming4us programming4us