https://superuser.com/questions/135393/list-printers-from-command-line-to-text-file
wmic printer list brief
get-WmiObject -class Win32_printer | ft name
Get-Printer | Format-List Name
wmic printer get name
https://superuser.com/questions/135393/list-printers-from-command-line-to-text-file
wmic printer list brief
get-WmiObject -class Win32_printer | ft name
Get-Printer | Format-List Name
wmic printer get name