Support Questions Of The Week
This weeks grab bag of support questions.
I would like early access to PaperCut’s upcoming features, do you guys offer a beta program?
Sure, if you have a test setup and the time it would be great to get some feedback. More details here.
I see two PaperCut services running in the services MMC, what’s the difference between the application server and print provider?
The “PaperCut Application Server” is the big brains behind PaperCut it does everything from making all of the decisions, storing logs, looking after account balances and generating reports.
The “PaperCut Print Provider” interfaces into the printing environment, CUPS, iPrint and Spools.exe. This does all the leg work with the print queues and handles all the pausing, resuming, redirecting and deleting for print jobs.
Unrelated to PaperCut we had an organization with severe workstation issues, the issues were hard to track down and caused all the applications to crash. They wanted to use PaperCut to log any attempts of printing where the client was not running. This would then help them (hopefully) see a pattern.
Using a script we were able to log when a print was sent while the client software was not running.
function printJobHook(inputs, actions) {
if (!inputs.client.isRunning) {
actions.job.cancel();
actions.log.warning(“Job name ” +
inputs.job.documentName +
” printed by ” +
inputs.job.username +
” to ” +
inputs.printer.printerName +
” was cancelled as client was not running on ” +
inputs.job.clientMachine);
}
}
Does PaperCut work with RM CC3/CC4?
We get this at least once a week, the answer is always….”We have various sites running PaperCut and CC4 without any issues”. We only know a few sites running CC4, we normally have no idea what is on an organizations network but so far nothing related to CC4 has caused us any problems. *crosses fingers*
Is it possible to upgrade PaperCut Server without updating secondary servers?
Yes the primary and secondary versions can be different as long as the primary is newer.
Want to add a custom logo on Toshiba embedded?
A ”header-logo.png” must be stored in the path of [app-path]\server\custom\web\device\toshiba\.
By default the \device\toshiba\ folder does not exist and has to be created. If you wish to return back to the “default” view then delete the directories you just made.

