Summary: Use Windows PowerShell in Windows 8.1 to list locally attached printers.
How can I use Windows PowerShell in Windows 8.1 to give me a list of network-connected printers?
Use the Get-Printer cmdlet and filter on the type of connection:
Get-Printer | Where { $_.Type –eq ‘Connection’ }