mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
32 lines
663 B
PowerShell
Executable File
32 lines
663 B
PowerShell
Executable File
#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
|
|
if ($printers.Count -eq 0) { throw "No printer found" }
|
|
|
|
foreach ($printer in $printers) {
|
|
$printjobs = Get-PrintJob -PrinterObject $printer
|
|
foreach ($printjob in $printjobs) {
|
|
Remove-PrintJob -InputObject $printjob
|
|
}
|
|
}
|
|
|
|
"✔️ all print jobs removed"
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|