Printer Server information
-
Friday, November 23, 2012 10:28 PMIs it possible to get list of all printers connect on a print server, but I want the bios names , just in case compatible driver has been installed of Windows 2008 R2 Printer server.
All Replies
-
Friday, November 23, 2012 11:49 PMModerator
Sorry, but I don't understand your question at all.
Bill
-
Friday, November 23, 2012 11:55 PM
Get-WmiObject Win32_Printer -Computer server01 | select name, drivername, printprocessor
¯\_(ツ)_/¯
- Edited by jrvMicrosoft Community Contributor Saturday, November 24, 2012 2:27 AM
-
Saturday, November 24, 2012 12:08 AMLook here : http://www.armadillo.it/list-drivers.html
Gastone Canali >http://www.armadillo.it
Se alcuni post rispondono al tuo quesito (non necessariamente i miei), ricorda di contrassegnarli come risposta e non dimenticare di contrassegnare anchei post utili . GRAZIE! Ricorda di dare un occhio anche QUI
-
Saturday, November 24, 2012 8:29 PMI want to run a printer audit on my Printer server, and want capture the all printer information. So if the printer is hp 2055dn but it using hp laserjet 5 driver I want to capture this.
-
Saturday, November 24, 2012 11:59 PM
I want to run a printer audit on my Printer server, and want capture the all printer information. So if the printer is hp 2055dn but it using hp laserjet 5 driver I want to capture this.
Get-WmiObject Win32_Printer -Computer server01 | select *
¯\_(ツ)_/¯
- Proposed As Answer by GastoneCanaliMicrosoft Community Contributor Sunday, November 25, 2012 12:12 AM

