This commit is contained in:
Markus Fleschutz 2022-12-04 11:16:10 +01:00
commit aef9527491
2 changed files with 23 additions and 15 deletions

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,18 +14,22 @@
#Requires -Version 4
try {
$printers = Get-Printer
if ($printers.Count -eq 0) { throw "No printer found" }
if ($IsLinux) {
# TODO
} else {
$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"
""
"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 # success

View File

@ -1,6 +1,6 @@
<#
.SYNOPSIS
Lists all printers known to the local computer
Lists the printers
.DESCRIPTION
This PowerShell script lists all printers known to the local computer.
.EXAMPLE
@ -12,8 +12,12 @@
#>
try {
$ComputerName = $(hostname)
get-WMIObject -Class Win32_Printer -ComputerName $ComputerName | format-table
if ($IsLinux) {
# TODO
} else {
$ComputerName = $(hostname)
Get-WMIObject -Class Win32_Printer -ComputerName $ComputerName | Format-Table
}
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"