Quick one-liner to pull printer names, drivers, and ports, from a print server.

Get-WMIObject -Class Win32_Printer -Computer server.contoso.com | Select Name,DriverName,PortName,Shared,ShareName | ft -auto