PowerTip: List all Local Printers in Windows 8.1

Doctor Scripto

Summary: Use Windows PowerShell in Windows 8.1 to list locally attached printers.

Hey, Scripting Guy! Question How can I use Windows PowerShell in Windows 8.1 to give me a list of network-connected printers?

Hey, Scripting Guy! Answer Use the Get-Printer cmdlet and filter on the type of connection:

Get-Printer | Where { $_.Type –eq ‘Connection’ }

0 comments

Discussion is closed.

Feedback usabilla icon