mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
35 lines
718 B
PowerShell
Executable File
35 lines
718 B
PowerShell
Executable File
#requires -version 4
|
|
<#
|
|
.SYNOPSIS
|
|
list-print-jobs.ps1
|
|
.DESCRIPTION
|
|
Lists all jobs from all printers
|
|
.EXAMPLE
|
|
PS> .\list-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" }
|
|
|
|
""
|
|
"Printer Jobs"
|
|
"------- ----"
|
|
foreach ($printer in $printers) {
|
|
$printjobs = Get-PrintJob -PrinterObject $printer
|
|
if ($printjobs.Count -eq 0) {
|
|
"$($printer.Name) none"
|
|
} else {
|
|
"$($printer.Name) $printjobs"
|
|
}
|
|
}
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|