Update list-print-jobs.ps1

This commit is contained in:
Markus Fleschutz 2022-12-04 10:48:49 +01:00
parent 37a7468559
commit e23add455f

View File

@ -1,6 +1,6 @@
<#
.SYNOPSIS
Lists all jobs of all printers
Lists all print jobs
.DESCRIPTION
This PowerShell script lists all print jobs of all printer devices.
.EXAMPLE
@ -14,6 +14,9 @@
#Requires -Version 4
try {
if ($IsLinux) {
# TODO
} else {
$printers = Get-Printer
if ($printers.Count -eq 0) { throw "No printer found" }
@ -28,6 +31,7 @@ try {
"$($printer.Name) $printjobs"
}
}
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"