PowerShell/Scripts/remove-print-jobs.ps1

30 lines
603 B
PowerShell
Raw Normal View History

2021-08-30 10:17:34 +02:00
#requires -version 4
<#
.SYNOPSIS
remove-print-jobs.ps1
.DESCRIPTION
removes all jobs from all printers
.EXAMPLE
PS> .\remove-print-jobs.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
$printers = Get-Printer
foreach ($printer in $printers) {
$printjobs = Get-PrintJob -PrinterObject $printer
foreach ($printjob in $printjobs) {
Remove-PrintJob -InputObject $printjob
2021-08-30 10:20:06 +02:00
}
2021-08-30 10:17:34 +02:00
}
2021-08-30 10:18:45 +02:00
"✔️ all print jobs removed"
2021-08-30 10:17:34 +02:00
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}