How to get model of printer with POWERSHELL?
I have 100 printers on my printserver, I need comandlet to get models jf this printers. Like that Name Printer - Model.
June 30th, 2015 2:37am

Hi,

See if this lists out for what you are looking for.

get-wmiobject win32_printer | ft

get-wmiobject win32_printer | ?{$_.ShareName -eq "Printer01"} | fl *

get-wmiobject win32_printer | ft Name,ShareName,DriverName -Autosize
Free Windows Admin Tool Kit Click here and download it now
June 30th, 2015 3:47am

You can get a model if it is part of a driver, share or name.

On windows 2k12 r2/Win8.1 you can use "get-printer | fl" to get list of your printers and their properties

June 30th, 2015 3:50am

How we can connect to http on aech printers IP and take info about model of printer?
Free Windows Admin Tool Kit Click here and download it now
June 30th, 2015 10:23pm

Hi,

Use this to connect to remote servers:

get-wmiobject win32_printer -ComputerName localhost

Connecting on https would be custom codes depending how printer is presenting the data.

If you already have a Print Server with the printer configured the earlier cmdlets are the best option you have.

Reading Data Directly from the Printer

http://www.codeproject.com/Articles/14434/Reading-Data-Directly-from-the-Printer

July 1st, 2015 2:16am

There is not any powershell commandlets to accomplish this.   The way you can accomplish this is with an SNMP utility program that reads the OID information from the device.

Can you use a command line tool rather than a powershell commandlet?  You can still wrap that in a powershell script that can read a list of IPs from a file and then output the information to another file.

Free Windows Admin Tool Kit Click here and download it now
July 1st, 2015 1:55pm

let me know if you need a pointer to the tool.

thanks

July 7th, 2015 1:35am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics