How to Check Print Server Logs: A Step-by-Step Guide
Learn how to check print server logs in Windows, troubleshoot print errors, and track print jobs effectively with this step by step guide.
Monitoring print server logs is key to resolving printer issues, keeping track of print jobs and ensuring everything runs smoothly in your print environment.
Here’s a handy step-by-step guide to help you access and interpret print server logs in Windows.
Steps to Check Print Server Logs
1. Enable Print Logging on the Print Server
First things first, you need to make sure logging is turned on:
- Open the Print Management console (printmanagement.msc).
- Expand the Print Servers section and select your server.
- Right-click on the server name and choose Properties.
- Under the Advanced tab, make sure the Log spooler information events box is checked.
- Click OK to save your changes.
2. Access Logs in Event Viewer
You can find the print server logs in the Event Viewer under the PrintService category:
- Open Event Viewer (eventvwr.msc).
- Navigate to Applications and Services Logs > Microsoft > Windows > PrintService > Operational
- If it’s not already enabled, right-click on Operational and select Enable Log.
- Check out the events for detailed insights into print jobs, errors, and printer status.
3. Filter Logs for Specific Events
To make your search more efficient:
- In the Operational log, please click on Filter Current Log from the right-hand menu.
- Specify Event IDs:
- 307: Print job success.
- 808: Printer errors.
- Click OK to see the filtered logs.
4. Export Print Logs
If you need to share or analyze the logs:
- Right-click on the Operational log and select Save All Events As.
- Choose your preferred file format (like .evtx for Event Viewer or .csv for spreadsheets).
Related Articles
Frequently asked questions:
-
What is the Event ID for successful print jobs?
Event ID 307 indicates that a print job has successfully printed.
-
How can I track print jobs from specific users?
Filter the logs in the PrintService Operational category and search for the user's name under the User field in the event details.
-
Why can’t I see any print logs in Event Viewer?
Ensure that print logging is enabled in the Print Management console and that the Operational log in Event Viewer is active.
-
Can I automate print log collection?
Yes, use PowerShell scripts to collect and export print logs. For example:
Get-WinEvent -LogName "Microsoft-Windows-PrintService/Operational" | Export-Csv -Path "C:\PrintLogs.csv" -
How do I troubleshoot recurring print errors?
Use the Event Viewer to filter for Event ID 808. Review the error description and match it with specific printer drivers, settings, or network issues.