Skip to main content

Auditing Printers in Windows Server 2012

If your organization has a need for auditing the use of printers, you can accomplish this with the Windows Event Logs.

Step 1: Configure Auditing.

Auditing can be configured through several means.  Group Policy is the most effective because it is a centrally managed system and users are not able to turn it off.  To enable auditing on the client/servers where the printer is managed, scope a GPO with these settings:

image

Expand Computer Configuration \ Policies \ Windows Settings Security Settings \ Local Policies \ Audit Policies.

Configure Audit object access to log success.

Close the GPO editor.  You must make sure that this GPO is scoped for the target client and the policy is applied.

 

Step 2: Configure audit settings on the printer.

On your Windows 2012 or Windows 8 client, press the (Windows) key to bring up the start menu.  For Windows Server 2008/7, click Start.

Type Printers and click Settings.

Click Devices and Printers.

image

Right click the printer that you want to perform auditing on and click Printer Properties.

Select the Sharing tab.  You need to list this shared printer in Active Directory to enable Auditing. 

Click Change Sharing Options and elevate your privileges if necessary,

Check List in the directory and then click Apply.

Click the Security tab and then click Advanced.

Click the Auditing tab.

Now click Add and the click Select a principal.

From here you can select the user or group that you want to audit. If you just want to audit who is sending print jobs to this printer, just audit for Print

Click OK 3 times.

A word of caution.  This will fill your security log very quickly.  In testing, 35 events were generated from printing 1 page from Notepad.  Consult your printer manufacture to see if they have management software for their product that will achieve your goals.  Here is a link to the KB article warning you about this same issue.  The information that is of value to you; username, printer, and document are located in multiple events in the message portion of the event.  This is not something that you can easily scan through so a third party solution may be required.

Comments

Popular posts from this blog

Adding a Comment to a GPO with PowerShell

As I'm writing this article, I'm also writing a customization for a PowerShell course I'm teaching next week in Phoenix.  This customization deals with Group Policy and PowerShell.  For those of you who attend my classes may already know this, but I sit their and try to ask the questions to myself that others may ask as I present the material.  I finished up my customization a few hours ago and then I realized that I did not add in how to put a comment on a GPO.  This is a feature that many Group Policy Administrators may not be aware of. This past summer I attended a presentation at TechEd on Group Policy.  One organization in the crowd had over 5,000 Group Policies.  In an environment like that, the comment section can be priceless.  I always like to write in the comment section why I created the policy so I know its purpose next week after I've completed 50 other tasks and can't remember what I did 5 minutes ago. In the Group Policy module for PowerShell V3, th

Return duplicate values from a collection with PowerShell

If you have a collection of objects and you want to remove any duplicate items, it is fairly simple. # Create a collection with duplicate values $Set1 = 1 , 1 , 2 , 2 , 3 , 4 , 5 , 6 , 7 , 1 , 2   # Remove the duplicate values. $Set1 | Select-Object -Unique 1 2 3 4 5 6 7 What if you want only the duplicate values and nothing else? # Create a collection with duplicate values $Set1 = 1 , 1 , 2 , 2 , 3 , 4 , 5 , 6 , 7 , 1 , 2   #Create a second collection with duplicate values removed. $Set2 = $Set1 | Select-Object -Unique   # Return only the duplicate values. ( Compare-Object -ReferenceObject $Set2 -DifferenceObject $Set1 ) . InputObject | Select-Object – Unique 1 2 This works with objects as well as numbers.  The first command creates a collection with 2 duplicates of both 1 and 2.   The second command creates another collection with the duplicates filtered out.  The Compare-Object cmdlet will first find items that are diffe

How to list all the AD LDS instances on a server

AD LDS allows you to provide directory services to applications that are free of the confines of Active Directory.  To list all the AD LDS instances on a server, follow this procedure: Log into the server in question Open a command prompt. Type dsdbutil and press Enter Type List Instances and press Enter . You will receive a list of the instance name, both the LDAP and SSL port numbers, the location of the database, and its status.