August 8th, 2013

PowerTip: Use PowerShell to Rename Printers

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell 3.0 in Windows 8 to rename a printer.

Hey, Scripting Guy! Question How can I use Windows PowerShell 3.0 in Windows 8 to rename a printer?

Hey, Scripting Guy! Answer Use the Get-Printer function to retrieve the printer, and pipe it to the Rename-Printer function:

Get-Printer -Name ‘mynewlaser’ | Rename-Printer -NewName ‘myotherlaser’

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.