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
- Share ARM64 Drivers from Windows Print Servers
- Printing from Microsoft Edge Browser and other Windows 10 and 11 Store Apps
- Top 10 best practices for implementing Print Quotas in education
- PaperCut Hive and SentinelOne
- Troubleshooting Mobility Print and Lightspeed
- Troubleshooting PaperCut Pocket & Hive Login
- Smooth MFD Upgrades: A Step-by-Step Guide
- PaperCut NG/MF Security Bulletin (December 2024)
- Redirected Printers on Windows Servers
- Windows ARM64 Support across the PaperCut portfolio
Comments
0 comments
Please sign in to leave a comment.