593 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
51
views
How to Programmatically Print the Windows Test Page for a Selected Printer in C# WinForms
I am building a C# Winforms application targeting .NET Framework 4.0 on Windows 7/10.
I want users to select a printer from a ComboBox and print the standard Windows test page (the same page that is ...
0
votes
0
answers
53
views
Epson TM-m30III don't print the £ symbol
The Epson TM-m30III is configured like so in the utility app:
I'm trying to print to the printer in a C# class using the Windows.Devices.PointOfService library. My code:
public async Task ...
0
votes
0
answers
37
views
How do you send an escape set code page command to a legacy printer?
Sending ESC commands to a legacy matrix printer can be done easily in FreeBSD (and others) using:
printf '033円k0' | lpr -P lp
Above command chooses one font in a legacy STAR LC 7211 (seems to use ESC/...
0
votes
1
answer
2k
views
Printer prints raw IPP request as a page (POST /ipp/print HTTP/1.1)
I am using a printer on Windows 10. Every time I start printing, the printer prints a page containing what looks like a raw IPP (Internet Printing Protocol) request instead of the actual document.
...
0
votes
1
answer
165
views
Powershell - Assistance setting an SNMP octet string to rename hostname on a printer using SnmpSharpNet
I'm trying to figure out a way to set SNMP to rename a hostname on printers. One of the hurdles I'm running in to is some printers I have been able to rename successfully and others not so much.
I ...
6
votes
0
answers
434
views
Create virtual printer using UWP Printer Support App (PSA)
net community,
I'm trying to create a UWP PSA application following the https://learn.microsoft.com/en-us/windows-hardware/drivers/devapps/print-support-app-v4-design-guide guide. However when I ...
0
votes
1
answer
184
views
Java send printjob to CUPS (socket printer)
I want to send a print job to Cups and the printer is connected to CUPS via socket. I am looking for a solution for my Java program to send print jobs to the printer using a URL to CUPS.
CUPS: http://...
0
votes
0
answers
41
views
Canon LBP6030w printer interface in yocto image
I am using the Yocto Project and trying to interface a Canon LBP6030w printer via USB. I have added the necessary packages and dependencies to the Yocto build and successfully built the image. However,...
2
votes
0
answers
66
views
Can't delete a printer queue on Windows 10 and Windows 11 using Win32 APIs sometimes
I tried to delete the printer and its corresponding printer driver using the following code:
if (IsPrinterNameExists(printerName))
{
HANDLE hPrinter;
PRINTER_DEFAULTS pd;
pd.pDatatype = ...
0
votes
0
answers
59
views
Fetch printer status using python on windows
I want to fetch the printer status connected to a computer (Windows) like door open/cover open, paper jam, no toner, etc. using python in realtime. I have a use case where I need to fetch these ...
0
votes
1
answer
88
views
Get-Printer Powershell script still showing columns even though they are excluded
Have the following line which should just output the name port and driver using get-printer:
Get-Printer | Select-Object Name, PortName, DriverName
The problem is that it also throws in Status, ...
0
votes
0
answers
117
views
How to save and restore printer device mode to file in Delphi?
I would like to save all printer settings of the chosen printer to a file in hex format. And later, load them from the file.
How do I do that?
I tried with the following. This is not in hex format.
...
0
votes
0
answers
451
views
I want to print a label in a thermal labels printer using a React Application
My colleague and I have been wondering if there is any npm package or something similar that can help us to print a personalized thermal label. We would like to use this printer if thats ok: VRETTI 4 ...
0
votes
1
answer
69
views
c# pdfium printer closing dialog
I will do automatic pdf printing in the background using the pdfium library. with the api, it finds the path to the pdf from the database and prints the pdf. but before that, it sets a default printer....
-1
votes
2
answers
2k
views
Configure printers using powershell
I recently started using powershell and was trying to automate the process of installing and configuring the printers in the office.
Installing the printer is working fine, but when i try to set the ...