PowerShell TidBits – How to list all printers installed on a computer?
Use following PowerShell commands to list all printers installed on any machine…
First command uses WMI (Windows Management Instrumentation)…
Get-WmiObject -Class "Win32_Printer" -ComputerName "localhost" | ft -Property Name, DriverName, SystemName, ShareName -AutoSize
Command Output
Name DriverName SystemName ShareName ---- ---------- ---------- --------- Send To OneNote 2016 Send to Microsoft…
View On WordPress












