Quantcast
Viewing all articles
Browse latest Browse all 34890

PowerTip: Use PowerShell to Find Printers Published in Active Directory

Summary: Use Windows PowerShell on Windows 8 or Windows Server 2012 to find printers published in Active Directory Domain Services (AD DS).

Image may be NSFW.
Clik here to view.
Hey, Scripting Guy! Question
 How do I use Windows PowerShell on Windows 8 or Windows Server 2012 to find printers published in AD DS?

Image may be NSFW.
Clik here to view.
Hey, Scripting Guy! Answer
 Use the Get-Printer function and pipe it to the Where-Object while filtering for the published property. The simple Windows PowerShell 3.0 syntax is shown here, where ? is an alias for Where-Object.

Get-Printer -ComputerName dc1 | ? published

Image may be NSFW.
Clik here to view.

Image may be NSFW.
Clik here to view.

Viewing all articles
Browse latest Browse all 34890

Trending Articles