Questions tagged [spooler]

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.

69 questions
0
votes
1 answer

Is there a way to print directly to printer from Java by bypassing Windows spooler?

Is there a way to print directly to usb printer by bypassing Windows spooler? I need a get an immediate feedback is printing job was succeeded or not. When I send it to spooler and it stuck, I have no any indication did it success or not. Update:…
Anatoly
  • 5,056
  • 9
  • 62
  • 136
0
votes
1 answer

Catch windows print jobs in C++

The problem I have a Windows XP pc connected to a printer. This pc runs a piece of software from where i create and send print jobs to the printer. Recently, the printer died and there is no way i can get a new one. The program is configured to…
Nicolai Lissau
  • 7,298
  • 5
  • 43
  • 57
0
votes
1 answer

Implementing a printer spooler

We have an assignment in which we have to implement a printer spooler using linked lists. I have used the list from STL to implement everything. I can get the program to send the print command and maintain status of documents. The problem is I don't…
Bhatti7
  • 3
  • 1
  • 5
0
votes
0 answers

Getting SPL file with jobID

I am developing a print monitor in c++. But I'm having trouble getting the file SPL. After much research I discovered that I had to insert the path of the folder where you store the .spl files in spoolerDirectory…
msantiago
  • 346
  • 2
  • 4
  • 14
0
votes
1 answer

how to put pcl file with correct name to win spooler

When I copy a pcl file to a windows spooler, I can't set the name and number of pages for this file in spooler. I do it from the commandline with a simple copy copy file.pcl printer How to copy the file to see it's name and nbr of pages in the…
Siegfried Storr
  • 67
  • 1
  • 1
  • 6
0
votes
1 answer

Mechanics of printing

I am changing default print settings using winspool.drv before printing. Do the altered default printing settings get embedded with the print job when it is printed? Or are they saved somewhere else? If I change a setting, what happens when the…
jle
  • 9,316
  • 5
  • 48
  • 67
0
votes
0 answers

AddMonitor 183 error

There is a simple code: [DllImport("winspool.Drv", EntryPoint = "AddMonitorA", SetLastError = true, ExactSpelling = true, CallingConvention = CallingConvention.StdCall)] private static extern bool AddMonitor([MarshalAs(UnmanagedType.LPStr)]…
RazorRunner
  • 131
  • 14
0
votes
1 answer

uwsgi unable to find the spooler function

I was trying to find out about the spooler mechanism of uWSGI and for that reason I've written a small, dummy web application with Django (version 1.3.1) and it is running on the latest stable version of nginx. Everything works as expected. However,…
Ozgur Vatansever
  • 49,246
  • 17
  • 84
  • 119
-2
votes
1 answer

How to know, is Windows spooler empy, from .bat?

I have a PowerShell script: $objPrintQueues = Get-WmiObject Win32_PerfFormattedData_Spooler_PrintQueue | Select Jobs $queuesCounter=0 $queuesDetector=0 foreach($queue in $objPrintQueues) { $queuesCounter=$queuesCounter+$queue.Jobs } …
Natalia
  • 1
  • 1
1 2 3 4
5