A program that controls spooling -- putting jobs on a queue and taking them off one at a time. Most operating systems come with one or more spoolers, such as a print spooler for spooling documents. In addition, some applications include spoolers. Many word processors, for example, include their own print spooler.
Questions tagged [spooler]
69 questions
0
votes
1 answer
Editing XPS Print Spool Files(.SPL Extension) in C# (Saving as Zip Problem)
When someone print a document(with XPS printing path) I want to pause print job and edit SPL(which zipped XPS format) file.
If I edit the file with 7zip and save. If I resume the job that document printing without any problem.
If I open the SPL file…

Trax
- 943
- 2
- 12
- 30
0
votes
1 answer
C# RSClientPrint VERY large Spool
I am using ASP .Net 3.5 MVC1 with a DB2 backend. My company is trying to print Barcodes from the Microsoft SQL Server 2008 RSCLient Print GDI+ dialog box. We can't save files to a PDF and print local because this is for our Physical Inventory…

jejernig
- 319
- 2
- 8
0
votes
1 answer
Batch file restart spooler and auto confirm a separate service
I'm trying to write a batch file for restarting the print spooler at our library. I thought I could get away with,
@echo off
NET stop spooler
NET start spooler
However, it then asks Y/N if I want to restart the "LPT:One Print Service" (lptclient)…

Cori G
- 5
- 1
- 3
0
votes
0 answers
Spooler dissapear on java Printing
I want to print textfile from java, but the spooler disappeared. It works if i print it directly from notepad. (i also trying pdf and image but it didn't work from java)
i noticed that data type from java is RAW but data type from notepad is nt emf…

user3021153
- 35
- 1
- 4
0
votes
1 answer
Ghostscript prints blank pages
I'm trying to print PDF file to windows printers using ghostscript library.
This is my command:
gswin32c.exe -dPrinted -dBATCH -dNOPAUSE -dNOSAFER -q -dNumCopies=1 -sDEVICE=mswinpr2 -sOutputFile="\\printserver\myprinter" "C:\myfile.pdf"
This…

Tobia
- 9,165
- 28
- 114
- 219
0
votes
2 answers
Android EventBus library for print notification/callback
Is EventBus suitable for the tasks I am trying to complete? I need a callback whenever any application prints a document.

Dejan Mauer
- 106
- 2
0
votes
1 answer
Script to check every spool queue, and if it finds an error in the jobs, erase it
I'm trying to make a script on PowerShell, I need to on click, check every single spool queue, and inside of that check if the jobs are ok, if not proceed to erase the jobs with errors or blocked...so far I can't achieve this, is only looking for…

José Vieiros
- 75
- 1
- 13
0
votes
0 answers
Print Spool - Save Document to File
My users print files (PDF,docx etc...) in apps like word, excel or e.g ERP Systems from different printers on there Computers.
I need to copy this files to a specific folder to save them in a storage.
This is my current code.
using…

Cazzador
- 33
- 2
- 9
0
votes
1 answer
JNA - Get multiples OpenPrinter
I need a kind of help!
I have to get all information of a PrintJob (the last one).
The problems is: My company's computers have more then one Printer per PC.
So I need to monitor more than one printer at the Spooler level.
I already tried so many…

Valmar Júnior
- 3
- 4
0
votes
0 answers
Pausing print queues via powershell/wmi
I am trying to pause all queues on a 2003 print server and the following which works on a 2008R2 and 2012R2 server does not work on the 2003 print server. Is there an equivalent WMI call that I can use on the 2003 server?
$strComputer = "test"…

John Balan
- 43
- 8
0
votes
0 answers
Spooling status on a Print Job for a Network Printer served by Print Server
I'm trying to understand how Network Printing works and the meaning of Print Job statuses.
When you have a Network Printer being served up by a Print Server (Win 2008 R2 x64), is the following true on how a Print Job is handled from a PC (Win7…

JamesA
- 115
- 2
- 10
0
votes
1 answer
I would like to delete/clear the print queue using python
I am doing some tests on a local printer. I can print to it and get its status using python module win32print but I can't figure out how to delete a queued job?
Thanks

H kantana
- 23
- 3
0
votes
1 answer
LPR: what is the location of the file that will be sent to the printer?
For a research project about printing nanofluids I need some more control over my Epson Stylus SX600FW.
I am sending a file to the printer using lpr test.ps, then it is in the print queue. Now I want to see the file (in pdl?) that the printer driver…

rinkert
- 6,593
- 2
- 12
- 31
0
votes
1 answer
Setting default_mailer for Swiftmailer in Symfony2 not working
I'm using Symfony 2.7 which comes with SwiftmailerBundle 2.3.8.
This is my configuration
swiftmailer:
mailers:
spool_mailer:
transport: "%mailer_transport%"
host: "%mailer_host%"
username: …

George Irimiciuc
- 4,573
- 8
- 44
- 88
0
votes
0 answers
Java: Unable to print, job appears in spooler and disappears after few moments
I've a problem printing using java classes. Everytime my file is found(the path is right), it is succesfully sent to my printer queue, but it disappears after few moments without errors and without printing. This is my code, thanks in advance.
…

fabrom
- 61
- 4