Sunday, 20 June 2021

How to Get Printer Name and Driver using PowerShell

 How to Get Printer Name and Driver using PowerShell



Knowing the driver path of the printers is also useful, the file can be copied and can be used to install on another computer.


Get-WmiObject -Query "Select DriverPath, Name from Win32_printerdriver"-Namespace 'Root\CIMV2' | Select Name, DriverPath | ft –wrap




No comments:

Post a Comment