In Dashboard, we display the number of active clients, however we do not display the details of those active Clients. This information is sometimes helpful for Administrators to track down issues on their site. This can also provide information about who has it installed and who doesn’t. It provides them some visibility into their network.
There are two options available to retrieve this information:
Find active clients with netstat Netstat is about the best way to see who has a connection open. Most clients will use ports 9191 and 9192.
For example: ‘netstat -na | find “9191”’ The PaperCut server and client have a keep-alive every minute. More information about this is available here.
If the client does not respond, its connection is closed.
Find active clients with print scripting Another way to check for the PaperCut client is using Advanced print scripting. A print script could be written for each printer. It could be added to one printer and then copied to other printers.
A script like this will write an entry to the Application log for every print job: (See screenshot below)
/* * Check for PaperCut client */ function printJobHook(inputs, actions) { var clientRunning = "NO"; if (inputs.client.isRunning) { clientRunning = "YES"; } actions.log.info('Client running ' + clientRunning + ', ' + inputs.job.username + ', ' + inputs.job.clientIP + ', ' + inputs.job.clientMachineOrIP); }
This option will provide information about the user client software when a print job is sent.
Articles in this section
- PaperCut MF - New SSL certificate (macOS)
- New KB article template
- Xerox embedded devices - Incorrect login screen issues
- Handling hidden characters in card numbers
- Scan to multiple email destinations
- PaperCut NG/MF Security Bulletin (March 2026)
- PaperCut Hive and Pocket Compatibility Tool
- Enabling ARM64 support in PaperCut NG/MF Print Deploy
- Incorrect stapling when printing multiple copies via a Find-Me queue using HP PCL drivers
- Resetting the PaperCut Hive or Pocket app (Android & iOS)
Comments
0 comments
Please sign in to leave a comment.