PowerShell/Scripts/list-print-jobs.ps1

36 lines
783 B
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-30 11:37:36 +02:00
.SYNOPSIS
2021-10-04 21:29:23 +02:00
Lists all jobs of all printers
2021-08-30 11:37:36 +02:00
.DESCRIPTION
2022-01-29 12:47:46 +01:00
This PowerShell script lists all print jobs of all printer devices.
2021-08-30 11:37:36 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./list-print-jobs
2021-08-30 11:37:36 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-08-30 11:37:36 +02:00
#>
2021-09-11 11:37:22 +02:00
#Requires -Version 4
2021-08-30 11:37:36 +02:00
try {
$printers = Get-Printer
if ($printers.Count -eq 0) { throw "No printer found" }
2021-08-30 11:45:05 +02:00
""
"Printer Jobs"
"------- ----"
2021-08-30 11:37:36 +02:00
foreach ($printer in $printers) {
$printjobs = Get-PrintJob -PrinterObject $printer
2021-08-30 11:45:05 +02:00
if ($printjobs.Count -eq 0) {
"$($printer.Name) none"
} else {
"$($printer.Name) $printjobs"
}
2021-08-30 11:37:36 +02:00
}
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-08-30 11:37:36 +02:00
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-08-30 11:37:36 +02:00
exit 1
}