The term network printer refers to the printer in a network which is accessible to all the network computers for printing purpose.
Questions tagged [network-printers]
226 questions
20
votes
3 answers
PHP Print to Network Printer
What I'm trying to do
Print a PDF document on a network printer while passing printing parameters for things such as colour, orientation, duplex, etc.
More information
We have multiple network printers, for which the IPs are static and known (i.e.…

ctwheels
- 21,901
- 9
- 42
- 77
13
votes
6 answers
Is there a .NET way to enumerate all available network printers?
Is there a straightforward way to enumerate all visible network printers in .NET? Currently, I'm showing the PrintDialog to allow the user to select a printer. The problem with that is, local printers are displayed as well (along with XPS Document…

Mark Carpenter
- 17,445
- 22
- 96
- 149
12
votes
3 answers
Error "Settings to access printer 'printername' are not valid" when printing from Windows service
I get the error mentioned when printing to a network printer.
The error does not occur when run under XP/Win2003, in a WinForm app or when a local printer is used.
The error does only occur when run as a Windows Service under Vista/Win7/Win2008 and…
Marc van Breemen
11
votes
2 answers
Android Wi-Fi Scan: Filter printers from ScanResult
I am working on a project, that needs to scan for public Wi-Fi access points.
Currently, I am filtering the ScanResult like this:
for (ScanResult scanResult : wifiList) {
if (!(scanResult.capabilities.contains("WEP") ||
…

soey
- 1,113
- 11
- 16
11
votes
9 answers
PHP to Zebra Printer
I have this Zebra ZM400 Printer connected to the network (192.168.1.50). And I am trying to push a content to this printer directly from PHP.
This is the idea and I am just stuck without any way to do this. I tried the…

Nirmal
- 9,391
- 11
- 57
- 81
9
votes
4 answers
printing over network from PHP app
I have a set of printers connect over a network with Static IP assigned to each printer.
Now i have a PHP web application running on a linux server which needs to send print jobs, to these printer over the network.
Is this possible using lpr or cups…

user160108
- 930
- 3
- 8
- 38
9
votes
6 answers
How to check in java if the PC is connected to the network printer?
Basically, I need to check the status of the n/w printer, if its on or not. Is there any way to do this in java?
Is there any third party API or tool for this?
I tried using PrintServiceLookup in java, but it does not give the status, if its on or…

ajm
- 12,863
- 58
- 163
- 234
9
votes
2 answers
Printing using IPP without drivers (IPP Client)
I have a device/appliance that you cannot install drivers for. I would like to add the ability to support network/IPP/AirPrint printers by having the user add the IP Addresses.
Since I am not printing through windows (which would use the IPP), how…

Paul Knopf
- 9,568
- 23
- 77
- 142
9
votes
2 answers
Send text file directly to network printer
I have currently-working code which sends raw data to a printer by writing a temporary file, then using File.Copy() to send it to the printer. File.Copy() supports both local ports, like LPT1 and shared printers like \\FRONTCOUNTER\LabelPrinter. …

Bobson
- 13,498
- 5
- 55
- 80
8
votes
1 answer
How to send print job to printer in python
I used Tkinter to draw some lines in python and I would like to print that picture to usb connected and/or network printer in Windows.
How should I do that?

BK C.
- 573
- 2
- 7
- 16
7
votes
2 answers
Toner levels using SNMP
I'm trying to get the toner levels from a Brother MCF-9465CDN using SNMP, in order to ultimately plot them in a graph using Munin. I'm not getting ink levels though.
Although I'm a bit new to SNMP, I assume what I'm trying should be possible.
$…

SaeX
- 17,240
- 16
- 77
- 97
7
votes
2 answers
Programmatically "hello world" default SERVER-side printer in ASP.NET MVC
I have the printer installed and working on an intranet server and I want to programmatically send "hello world" to that default printer. This seems like the simplest thing but I've been googling for a couple hours with no success. (note: I am…

Benjamin
- 3,134
- 6
- 36
- 57
6
votes
1 answer
Java - List all network printers on LAN
I need to use Java to get a list of all the IP addresses on the LAN which belong to network printers. I don't need to print to the printers, I just need to find all of them. This is for an android application.
Just to be clear, I'm not trying to…

QRohlf
- 2,795
- 3
- 24
- 27
6
votes
1 answer
Can I send print jobs directly from a python program to the IP address of a CUPS print server?
I have two linux computers with fixed IP addresses:
A print server, whereby the connected printer is shared via CUPS.
(The server has the IP address "192.168.1.2" and the printer is called "test_printer".)
A computer, on which a python application…

AFoeee
- 731
- 7
- 24
6
votes
3 answers
How do I get the Printer status?
Is there any way I can get the printer status, like paper jam or out of paper, from a Network Printer?
I'm working on a project to print from a Point of Sales into a A4 Network Printer, I'm planning to use the LPR native application but I can't get…

gcmmemo
- 61
- 2