Guy recommends :
Free Solarwinds
VM Console

Solarwinds VM Console Free Download

Find out which of your VMs are a waste of space and which VMs need more resources.



PowerShell Printers

PowerShell PrintersPowerShell Printer Scripts - win32_printer

I will show you how to use PowerShell to extract information about your printers.  We will create a script which not only lists the printers, but also reveals their properties.  For example, the printer's sharename, driver, status and 90 other properties.

Topics for PowerShell's Printers

 ♣

Tasks for PowerShell Printer Scripts

Despite being one of the first devices to be 'plug and play', printers still give more than their fair share of problems.  One clue of trouble ahead is the large number of adjectives to qualify the context of the word printer, for example, driver, device, default, network and share.  All this means is that printers provide rich pickings for writing good PowerShell cmdlets.  Here are possible tasks for a printer script:

  • List all the printers on your server.
  • Trawl the network and list the printers on named servers.
  • Output the list of printers to a file.
  • Investigate additional WMI classes for use with printers.
  • Use PowerShell to add printer share.

Preliminary Script  0:  List All WMI Objects Containing the Word 'Printer'

Many of these printer cmdlets employ WMI to interrogate computer objects such as printers.  As you may know, Get-WmiObject opens up a whole world of system objects, which you can then use PowerShell to read their values.

The point of this initial research is to answer the question, 'How did Guy know to use the class Win32_Printer?'

Instructions

If you have not used PowerShell before, here are step-by-step instructions to execute commands. Else, just rely on the trusty copy and paste method.

# PowerShell to list WMI Printer Objects
# Author: Guy Thomas
Get-WmiObject -list | where {$_.name -match "Printer"}

Note 1: In addition to Win32_printer (featured below) there is a class for TCP/IP printing: Win32_TCPIPPrinterPort.

Note 2: $_ means in this pipeline.

Example 1: List All Printers on Your Server

# PowerShell for Printers
# Author: Guy Thomas
Clear-Host
$Class = "win32_printer"
Get-WmiObject -class $Class | ft name, systemName, shareName -auto

Learning Points

Note 3:  Guy's technique of using the variable $Class is optional.

Note 4:  ft means: format-Table with the following properties.  Incidentally, you could append -auto.

Guy Recommends: WMI Monitor and It's Free!Solarwinds Free WMI Monitor

Windows Management Instrumentation (WMI) is one of the hidden treasures of Microsoft operating systems.  Fortunately, Solarwinds have created a Free WMI Monitor so that you can discover these gems of performance information, and thus improve your PowerShell scripts.  Take the guess work out of which WMI counters to use when scripting the operating system, Active Directory or Exchange Server.

Download your free copy of WMI Monitor

Example 2:  List Printers Found in an Array of Computers

Preliminary, amend $arrayComp to hold the names of real servers on your network.  Pay close attention to the speech marks and comma(s).

# PowerShell array to List Printers
# Author: Guy Thomas
$Class = "win32_printer"
$arrayComp ="BigServer", "LittleServer"
foreach ($machine in $arrayComp) {
Get-WmiObject -class $Class -computername $machine |`
ft name, systemName, shareName -auto } 

Learning Points

Note 5:  To output this list of printers to a file, append this command:
out-File "d:\powershell\Printers\array.txt" -append

Example 3:  Research More Properties for Win32_Printer with gm (Get-Member)

# PowerShell cmdlet to investigate win32_printer properties
# Author: Guy Thomas
$Class = "Win32_printer"
$GMProp = Get-WmiObject -class $Class | gm -memberType property `
| where {$_.name -notmatch "__*"}
$GMProp
$GMProp.count

Learning Points

Note 6:  Use of -notMatch.  "__" needs the star, hence "__*".

Note 7:  By assigning the output to a variable, we can count the number of matching properties.

Note 8: The tiny backtick (`) is useful for explaining to PowerShell that the same command continues on the next line.

Note 9: Here is a more longwinded alternative to using the .count property:
| where {if ($_.name -notmatch "__*") {$i++}}

Guy Recommends:  Solarwinds' Free Bulk Import ToolFree Download of Solarwinds  Bulk Import Tool

Import users from a spreadsheet.  Just provide a list of the users with their fields in the top row, and save as .csv file.  Then launch this FREE utility and match your fields with AD's attributes, click to import the users.  Optionally, you can provide the name of the OU where the new accounts will be born.

There are also two bonus tools in this free download, and all 3 have been approved by Microsoft:

  1. Bulk-import new users into Active Directory.
  2. Seek and zap unwanted user accounts.
  3. Find inactive computers.

Download your FREE bulk import tool.

Example 4: PowerShell Adds a Network Printer

Preliminary step: to get this script to work you must amend 'Server\PrintShare' to reflect the real name of a server and a printer on your network.

# PowerShell add share printer
# Author: Guy Thomas
$PrinterPath = "\\Server\PrintShare"
$net = new-Object -com WScript.Network
$net.AddWindowsPrinterConnection($PrinterPath)

Note 10:  You must edit the value for $PrinterPath to reflect a computer on your network.

Note 11:  This PowerShell script does not use WmiObject with its Win32 class, but instead it uses:
New-Object -com WScript.Network.

Note 12:  Troubleshooting There should be no space before the bracket, this mistake caused me some head-scratching, until I realized that for once there was no spelling mistake in AddWindowsPrinterConnection, just an unwanted space:
$net.AddWindowsPrinterConnection  ($PrinterPath)

See more on PowerShell Logon Scripts

Summary of PowerShell and Printers

Ever since I can remember, printers give more problems than any other hardware.  PowerShell is not the magic bullet to cure all your printer problems, however, PowerShell makes it easier to configure printers than using the same commands in VBScript.

If you like this page then please share it with your friends

 


See more Microsoft PowerShell tutorials:

PowerShell Home   •Shell Application  • New-Object   • PowerShell create shortcut

PowerShell Logon Script   • Map Network Drive   • PowerShell add printer   • PowerShell -com

Invoke-Expression   • Invoke-Command 

Please email me if you have a better example script. Also please report any factual mistakes, grammatical errors or broken links, I will be happy to correct the fault.

Download my ebook:Getting Started with PowerShell
Getting Started with PowerShell - only $9.25

You get 36 topics organized into these 3 sections:
   1) Getting Started
   2) Real-life tasks
   3) Examples of Syntax.

In addition to the ebook, you get a PDF version of this  Introduction to PowerShell ebook  It runs to 120 pages of A4.

 *


Custom Search

Guy Recommends: WMI Monitor and It's Free!Solarwinds WMI Monitor

Windows Management Instrumentation (WMI) is one of the hidden treasures of Microsoft operating systems.

Fortunately, Solarwinds have created the Free WMI Monitor so that you can actually see and understand these gems of performance information.  Take the guess work out of which WMI counters to use for applications like Microsoft Active Directory, SQL or Exchange Server.

Download your free copy of WMI Monitor

 

Home Copyright © 1999-2012 Computer Performance LTD All rights reserved

Please report a broken link, or an error.