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
|
2021-08-30 11:25:27 +02:00
|
|
|
|
if ($printers.Count -eq 0) { throw "No printer found" }
|
|
|
|
|
|
2021-08-30 10:17:34 +02:00
|
|
|
|
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
|
|
|
|
|
}
|