Ciao a tutti. Vengo subito al sodo. Questo è il semplice codice tramite il quale recupero informazioni relative a una stampante di rete
get-WmiObject -class "win32_printer" | ? {$_.name -like "xerox*"} | Format-List name,default,local,network
Ciò che ottengo mi lascia perplesso
name : Xerox WorkCentre 7232
default : True
local : True
network : False
Sull'mdsn
http://msdn.microsoft.com/en-us/library/aa394363%28v=VS.85%29.aspx
leggo testualmente
Network
Data type: boolean
Access type: Read/write
If TRUE, the printer is a network printer. If both the Local and Network properties are set to TRUE, then the printer is a network printer.
Per quale motivo la stampante non viene riconosciuta come stampante di rete?
Grazie per l'attenzione.