-
-
Notifications
You must be signed in to change notification settings - Fork 424
/
list-print-jobs.ps1
executable file
·47 lines (42 loc) · 1003 Bytes
/
list-print-jobs.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<#
.SYNOPSIS
Lists all print jobs
.DESCRIPTION
This PowerShell script lists all print jobs of all printer devices.
.EXAMPLE
PS> ./list-print-jobs.ps1
Printer Jobs
------- ----
ET-2810 Series none
...
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
#Requires -Version 4
function ListPrintJobs {
$printers = Get-Printer
if ($printers.Count -eq 0) { throw "No printer found" }
foreach ($printer in $printers) {
$PrinterName = $printer.Name
$printjobs = Get-PrintJob -PrinterObject $printer
if ($printjobs.Count -eq 0) {
$PrintJobs = "none"
} else {
$PrintJobs = "$printjobs"
}
New-Object PSObject -Property @{ Printer=$PrinterName; Jobs=$PrintJobs }
}
}
try {
if ($IsLinux) {
# TODO
} else {
ListPrintJobs | Format-Table -property Printer,Jobs
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}