Warren F bio photo

Warren F

Systems Engineer with a penchant for PowerShell, science, cooking, information security, family, cookies, and the Oxford comma.

Connect

@pscookiemonster LinkedIn Github Stackoverflow TechNet RSS Feed My old blog

My GitHub Repos

AppVReporting BuildHelpers Citrix.NetScaler Git-Presentation InfoBlox Invoke-Parallel PowerShell PSDepend PSDeploy PSDiskPart PSExcel PSHTMLTable PSRabbitMQ PSSlack PSSQLite PSStash RabbitMqTools SecretServer

Overview

Edit: This material has been adapted and augmented by Don Jones into the Why PowerShell? eBook.

I often find myself explaining why someone with responsibilities on the Microsoft side of the fence should learn PowerShell. I decided to write this as a reference going forward.

I won’t be arguing for PowerShell over other Microsoft languages such as VBScript or batch, or general purpose languages such as Python or Perl. There is a place for all of these languages, but if you work with the Microsoft and surrounding ecosystems, PowerShell is an important language to learn.

Why Scripting?

Before we dive into PowerShell itself, let’s tackle the importance of scripting and automation, an integral facet of PowerShell.

You’ve probably seen this XKCD comic or something similar to justify scripting. While saving time is certainly a factor behind the importance of scripting and automation, it is hardly the only justification. Here are a few others to consider:

  • Consistency. A scripted solution will run the exact same script every time. No risk of typos, forgetting to complete the task, or doing the task incorrectly.
  • Audit trail. There are many tasks where having an audit trail would be helpful, perhaps including what task was performed, important results, errors that occurred, when the task ran, who ran it, and so forth.
  • Modular code. I might spend more time on a particular function than time savings justify, but I can generally re-use or borrow ideas from the code later.
  • Documentation. Is there documentation for the task? Is it up to date? A well written and commented script can generally serve as a helpful base level of documentation that might not exist for a manual task.
  • Education. Scripting out a task will improve your scripting ability and potentially give you deeper insight into what you are doing than the black box of a GUI.
  • Motivation. When I was starting out in support, an engineer asked me to help script out alerting, logging, and resolution of a few basic common issues we ran into. This gave me the opportunity to learn more and grow. Scripting is a great way to get folks to learn, assuming they want to.
  • Change of pace. Repetition is not fun. Removing or minimizing it will improve morale.
  • Delegation. With a scripted solution, you can typically delegate more functions closer to the teams best equipped to handle them, giving you more time to focus on the important stuff.

The moral of the story is that scripting and automation is important, which is just one factor behind the value of learning PowerShell.

Why PowerShell?

Microsoft describes PowerShell as “a task-based command-line shell and scripting language… built on the .NET Framework.” What is so great about PowerShell? Why should you use it?

PowerShell is both a command-line shell and scripting language

  • Fight fires quickly using existing or custom PowerShell commands or scripts at the shell, no need to compile code. Develop your code at the command line before creating a function or script around it. Write quick and dirty scripts that you will use a single time or a handful of times. Write formal, readable, production level scripts that will maintain your services for years.
  • What is the cost of this investment? Learning PowerShell. Pretty reasonable, considering you will likely need to do so regardless of your current language of choice, assuming you work with the Microsoft ecosystem.

PowerShell can interact with a dizzying number of technologies.

  • .NET Framework, the Registry, COM, WMI, ADSI. Exchange, Sharepoint, Systems Center, Hyper-V, SQL. VMware vCenter, Cisco UCS, Citrix XenApp and XenDesktop. REST APIs, XML, CSV, JSON, websites, Excel and other Office applications. C# and other languages, DLLs and other binaries, including *nix tools. A language that can work with and integrate these various technologies can be incredibly valuable.
  • Windows is not text based. Sooner or later you will need to do something that you can’t do with *nix tools and other text based languages. Many of the technologies that PowerShell can interact with simply do not have text based interfaces, and may not even be directly accessible from more formal languages like Perl or Python.

PowerShell is object-based.

  • This gives us incredible flexibility. Filter, sort, measure, group, compare or take other actions on objects as they pass through the pipeline. Work with properties and methods rather than raw text.
  • If you have spent time deciphering and programmatically working with text based output, you know how frustrating it can be. What delimiter do I split on? Is there even a delimiter? What if a particular result has a blank entry for a column? Do I need to count characters in each column? Will this count vary depending on the output? With objects, this is all done for you, and makes it quite simple to tie together commands and data across various technologies.
  • Microsoft is putting its full weight behind PowerShell.

PowerShell isn’t going away.

  • It is a requirement in the Microsoft Common Engineering Criteria, and a Server product cannot be shipped without a PowerShell interface.
  • In many cases Microsoft uses it to build the GUI management consoles for its products. Some tasks can’t be performed in the GUI and can only be completed in PowerShell.
  • Regardless of how far Microsoft shifts to the *aaS side of the spectrum, they support PowerShell for both on-premise and hosted solutions.

Consolidate and multiply your learning

  • Your reward for learning PowerShell is the impoved ability to control and automate the many technologies it integrates with. I can use the same set of commands to filter, export, redirect, modify, extend, and perform actions against output for all of these technologies. I can pick up my PowerShell skills and take them in any direction I need - Hyper-V, vCenter, SQL, AD, XenApp, and more.
  • Your reward for learning specific tools or executables such as net.exe or schtasks.exe, is the ability to work with those specific tools.
  • I’m not knocking these, and they are incredibly helpful to know, but coming from the Unix/Linux side of the house, you would need to know a shell language (bash), various tools (awk, sed, grep) a general purpose language (Perl, Python), and perhaps a language like Ruby for configuration management. In the Microsoft world? You can go quite far with PowerShell.

PowerShell can help anyone working in the Microsoft ecosystem

  • PowerShell is not just for systems administrators.
  • Douglas Finke wrote a great, quick read on what developers and others can get out of PowerShell. His blog Development in a Blink, and Joel Bennett’s Huddled Masses provide helpful development-oriented PowerShell articles. Given the object-based nature of PowerShell and tight integration with .NET and other technologies, this shouldn’t be surprising.
  • The Desktop side isn’t excluded. Windows 7 and later include PowerShell. Audit local administrators and other details across your domain. Support end users without interruption. Tie together various desktop tools that have a command line interface. Build a GUI interface for your Support staff that can easily be modified by non-developers.
  • DBAs on the Microsoft side of the house benefit from PowerShell as well. Gather an inventory of your SQL instances. Monitor SQL performance. Write tools that fit your exact needs rather than spending money on proprietary, not-tailored-to-you solutions. Chad Miller of the now defunct Sev17 has written many posts on PowerShell for SQL.

Where can I learn more?

There is a wealth of information on PowerShell. I keep a running list of resources I’ve found helpful in learning and using PowerShell right here, covering cheat sheets, blogs, videos, books and more.

What resources you find the most helpful will depend on your experience, role, and preferences.

A closing example

Let’s illustrate one solution using PowerShell that ties together a number of technologies.

We use Systems Center Operations Manager (SCOM) as part of our monitoring solution. We use vmware vCenter as our virtualization management solution. If you have used SCOM, you know how sparse and bland the notifications can be. Let’s take a look at an example:

A boring alert

You get basic information about the alert, and only the alert. Nothing about the rule/monitor that generated it. No suggestions on how to fix it. Nothing to highlight important details, just plain text. For this particular monitor, you don’t even get details on the disk space that triggered the low disk space alert! If you try to foist this type of notification upon your teams, there is a good chance they won’t be happy. You might even end up with a new monitoring solution.

We decided to use PowerShell as follows:

  • A PowerShell script regularly collects inventory details on servers from Active Directory and vCenter, populating a SQL database.
  • SCOM is configured to create a file based on the alert, rather than send an e-mail directly. A customized PowerShell ‘Script Daemon’ watches the SCOM alert folder, and runs a PowerShell alert processing script for every alert generated. If more than a specified number of alerts are generated in a short period, they are grouped into a single notification with a synopsis table and attached HTML details. All alert processing is parallelized using a RunspacePool.
  • The PowerShell alert processing script lets us run anything we want based on the alert. This means we can…
    • Gather context for every alert, including alert details from SCOM, the inventory database (e.g. who is responsible for the server, class of the server), and even the server itself (in this example, current disk space free, and disk space taken by certain folders).
    • Take action based on this information, perhaps adding or removing recipients, attempting to remediate and including results in the e-mail, adding troubleshooting suggestions, querying our change management database to determine whether any expected changes are underway, etc.
    • Build an HTML notification from the resulting objects and send it out via e-mail.

Remember the boring alert with no context? Here’s what we see now:

A more detailed alert

A more detailed alert

Good luck! PowerShell can be a great benefit to you, your career, and your employer.