Hello I have this code to retreive printer properties:
string printerName = "PrinterName";
string query = string.Format("SELECT * from Win32_Printer "
+ "WHERE Name LIKE '%{0}'",
printerName);
ManagementObjectSearcher searcher = new ManagementObjectSearcher(query);
ManagementObjectCollection coll = searcher.Get();
foreach (ManagementObject printer in coll)
{
foreach (PropertyData property in printer.Properties)
{
Console.WriteLine(string.Format("{0}: {1}",
property.Name,
property.Value));
}
}
But properties I need always return the same:
PrinterState:0
PrinterStatus:3
Basically I need this to check if printer is out of paper. What I think would be: PrinterState: 4
Tested on wxp-86 and w7-64 return the same, .Net 4.0
Thank you.
