Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Rename Printers

$
0
0

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'


Viewing all articles
Browse latest Browse all 3333

Trending Articles