Tagged Questions

0
votes
2answers
182 views

How to list all the printers on the network?

I am trying to list all the printers on the network (we have a very large, cross-ocean network) using VS2008 & c#. I am looking to replicate the functionality of the Find Printers dialog box in …
3
votes
3answers
426 views

“Invalid procedure call or argument” when setting Printer object

I have a VB6 application that is giving an error 5, "Invalid procedure call or argument" when the program attempts to set the Printer object to a specific printer from the Printers collection. The …
1
vote
4answers
416 views

Enumerate mapped printers for a specific Terminal Server session

I am looking for a way to see what printers a specific user has mapped into his or her TS session. How can I achieve this with WMI (via PowerShell) or VB-Script? Is there a built-in way I'm not aware …
3
votes
1answer
439 views

Change default printer based on location

I would like to write a VBScript to change the default printer, based on which printer is connected. I have a laptop that I use at work and at home, and I would like to run this script when starting …
3
votes
4answers
4k views

How to get Printer Info in C#.NET?

In the standard PrintDialog there are four values associated with a selected printer: Status, Type, Where, and Comment. If I know a printer's name, how can I get these values in C# 2.0?
3
votes
2answers
542 views

Windows API for detecting out of paper on specific printer tray

I'm looking for a way to determine if a specific tray on a given printer in Windows is out of paper. Currenly I'm using the WMI Win32_Printer object to get the status of the entire printer, and if …