Retrieves all of the Windows Print events from a target computer for the last 24 hours.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$objComputer = "Server001" | |
$objXMLFilter = '<QueryList> | |
<Query Id="0" Path="Microsoft-Windows-PrintService/Operational"> | |
<Select Path="Microsoft-Windows-PrintService/Operational">*[System[(EventID=307) and TimeCreated[timediff(@SystemTime) <= 86400000]]]</Select> | |
</Query> | |
</QueryList>' | |
$colPrintEvents = get-winevent -ComputerName $objComputer -filterxml $objXMLFilter | |
$colPrintEvents | export-csv 'C:\Reports\PrintEvents.csv' -NoTypeInformation |