February 2019
Beginner to intermediate
542 pages
10h 34m
English
There are occasions when you may wish to print a test page on a printer; for example, after you change the toner or printer ink on a physical printer or after changing the print driver (as shown in the Changing printer drivers recipe). In those cases, the test page helps you to ensure that the printer is working properly.
This recipe uses the PSRV print server that you set up in the Installing and sharing printers recipe.
$Printers = Get-CimInstance -ClassName Win32_Printer
'{0} Printers defined on this system' -f $Printers.Count$Printer = $Printers | Where-Object Name -eq "SalesPrinter1" ...
Read now
Unlock full access