Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
possible duplicate of How to get Printer Info in .NET? – DJ KRAZE Jan 22 at 10:15
It's true, but it is what returns. – Alexx Perez Jan 22 at 10:33

2 Answers

up vote 1 down vote accepted

According to msdn , Paper Out=5

using System;
using System.Management;
using System.Windows.Forms;

namespace WMISample
{
    public class MyWMIQuery
    {
        public static void Main()
        {
            try
            {
                string printerName = "PrinterName";
                ManagementObjectSearcher searcher = 
                    new ManagementObjectSearcher("root\\CIMV2", 
                    "SELECT * FROM Win32_Printer "
                     + "WHERE Name LIKE '%{0}'", printerName);); 

                foreach (ManagementObject queryObj in searcher.Get())
                {
                    Console.WriteLine("-----------------------------------");
                    Console.WriteLine("Win32_Printer instance");
                    Console.WriteLine("-----------------------------------");
                    Console.WriteLine("PrinterStatus: {0}", queryObj["PrinterStatus"]);
                }
            }
            catch (ManagementException e)
            {
                MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
            }
        }
    }
}
share|improve this answer
Well, it should return 5. But it always return the same, with printer working, idle, paper out, always return PrinterState:0 PrinterStatus:3 – Alexx Perez Jan 22 at 10:37
0 is not valid PrinterStatus according msdn. – Arshad Jan 22 at 10:40
@Alexx Perez,check the updated code – Arshad Jan 22 at 10:50
OK, this is working, just changing state from printing to out of paper take about 2 minutes. Why?? And I need to check even if i'm not printing – Alexx Perez Jan 22 at 11:09
if its working then you can accept as solution, wmi queries on hardware , that why it takes time. you can set set interval time also. example ; msdn.microsoft.com/en-us/library/aa394527%28VS.85%29.aspx – Arshad Jan 22 at 11:17

this line:

string query = string.Format("SELECT * from Win32_Printer " 
                            + "WHERE Name LIKE '%{0}'",
                         printerName);

try call it with % after printername:

string query = string.Format("SELECT * from Win32_Printer " 
                            + "WHERE Name LIKE '%{0}%'",
                         printerName);

often printer name is: "[printername] On [port]"

share|improve this answer
Returns the same. – Alexx Perez Jan 22 at 10:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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