-
-
Notifications
You must be signed in to change notification settings - Fork 443
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Show installed printers at the PC details tabs #676
Comments
That's a massive job to implement that!! Too list printers would be easy enough but to get details on printers you would need SNMP or something similar. |
Using SNMP is a good way to get the details if we scan the network (I have already published my dream feature from my wishlist here). |
Yeah theres a difference between a displaycard (part of the pc) and a printer which is really independent. A collector script would maybe be the answer though? Or written to notes? EG powershell "Get-Printer" shows alot of info about printers. Or even "Get-Printer | Format-List Name,DriverName,PortName,Shared,DeviceType" |
I am no expert, but it makes sense to me that if we can ask Windows about the installed drivers it has for any internal device (VGA, CPU, HD etc), it should be at least as easy to ask it for any other, already installed, external devices that are also connected to the PC - not to an internal slot, sure, but through the network - but still, Windows do know about them and does possess a lot of information that in my opinion would be stored with the installed driver - wouldn't it? |
Yeah thats fine, Like I said "Get-Printer | Format-List Name,DriverName,PortName,Shared,DeviceType" would get all of that info and could be output to notes, please try it and let me know |
Just by the by, I added a custom field called printers, I have an onboarding automation policy that collects data for custom fields and I literally run @dinger1986 script and it outputs this: |
If we add that as a community script with a guide can be consider this closed? |
Another option you could run to get printer data would be this get-WmiObject -class Win32_printer | fl * |
I'll be adding community script and closing this soon. |
This is implemented as a community script now |
Knowing about the installed printers and getting as many details about them as possible, like is the printer online or offline, details about ink or toner levels would be a great time saver.
Additional information about the printers that I would love to know about:
Other related features I think would be lovely to have:
The text was updated successfully, but these errors were encountered: