How to use the PowerShell Script Analyzer to Clean Up Your Code

Home > Videos > PowerShell > How to use the PowerShell Script Analyzer to Clean Up Your Code

How to use the PowerShell Script Analyzer to Clean Up Your Code

Like This Video 0 1245 Jason Yoder
Added by March 1, 2018

In this video, PowerShell instructor Jason Yoder demonstrates how you can use the PowerShell Script Analyzer to help you format your code to best-practices.

For instructor-led PowerShell training classes, see our course schedule:

Microsoft Windows PowerShell Training

Download the PowerShell Analyzer scripts used in this video.

Video Trascription

Hi, I’m Jason Yoder with Interface Technical Training. Today, we’re going to take a look at the PowerShell Script Analyzer and how it can help you when you’re writing your PowerShell code.

I often get asked during my classes, “What are the best practices for coding?” Truth be told, it really depends on your environment. If you’re working with a bunch of other programmers, you’ll need to have some type of standard that you use so that when you read each other’s code, you can understand it better.

[00:29] In the industry, there has been some best practices developed. The PowerShell Script Analyzer’s going to help you match your code against those best practices. Let’s take a look at it.

[00:39] First of all, we’re going to notice is the PowerShell Script Analyzer is not installed on your machines by default. The question is, “Where do I get this from?” That’s easy. It’s out on the PowerShell Gallery.

[00:51] Before we can download any content from the PowerShell Gallery, you need to install a package provider called NuGet. I’m going to go ahead and do this. I’m using the ‑Force parameter, so we don’t get a confirmation window popping up.

[01:04] All right, it’s installed, and now we can start using the PowerShell Gallery. I’m going to search the gallery for a module called PSScriptAnalyzer. Now, again, this is going to be the actual PowerShell Script Analyzer that we’re going to download and place into our machine. There it is. I’m going to go ahead and install this module from the PowerShell Gallery. Again, I’m using the ‑Force parameter so we don’t receive a confirmation box.

[01:28] All right, now that our module’s been installed, let’s take a look at some of the Cmdlets that are available to us. We have three Cmdlets.

[01:39] The first one we’re going to take a look at is Get‑ScriptAnalyzerRule. Now Get‑ScriptAnalyzerRule is going to take our scripts and compare them with 51 rules that are already defined in the system to see if we’re following some best practices in the industry.

[01:56] We can also take a look at these rules manually, if you run Get‑ScriptAnalyzerRule all by itself. It’s going to show you all the rules, but we can also filter based on severity of the rules or warning and information. What we’re going to do is we’re going to run this against a script that I’ve already created called GatherMyDataSets. Let’s run through the code real quick and see what we’re going to be working with.

[02:19] First of all, we have a mandatory parameter called Computer Name. I’ve already assigned it a default value of dc1. dc1 is a valid computer in our network.

[02:30] Next, we’re going to be using Write‑Host to display on the screen where we’re getting our information from. Then, finally, we’re going to use Get‑WMiObject to grab the information from the operating system. When you run this code, you can see it does work.

[02:45] Let’s go ahead and invoke this PowerShell Script Analyzer. The path is going to be where I’ve saved my code. You can see we have a list of issues that have come up.

[02:57] First of all, we have a warning, “Use singular nouns.” The description on it, the Cmdlet gathers my data sets, uses a plural noun. Now, if you know anything about how PowerShell’s naming syntax is supposed to go, it’s verb‑singular noun.

[03:15] What we’re going to do is we’re going to make a change. If you take a look at this second script, we’re going to go ahead and remove, there it is, the S. Now, let’s go ahead and save this code. What I’m going to do next is run that code. We still have all the errors, but we’re not seeing the one about having a plural noun component of our name, so that one’s been fixed.

[03:45] The next one we’re seeing here, “Avoid using WMI cmdlet.” See the file myScript.psi uses WMI  Cmdlet for PowerShell 3.0and above. They want us to use the new CIM Cmdlets. We need to fix this.

[04:00] In this next script…we’re going to take away original error there. You’ll see in the next script I’ve replaced Get‑WMiObject with Get‑CimInstance. Now this is the Cmdlet that Microsoft wants us to use moving forward.

[04:15] If you’re still working in an environment where you have PowerShell 2.0deployed, Get‑WMiObject is still available to you, but it’s no longer going to be carried forward. You want to take a look at upgrading those versions of PowerShell, not just so you can maintain compatibility, but also for security reasons.

[04:33] Let’s go ahead and run the script analyzer against this set of code. All right, another error message has disappeared. Let’s take a look at the next one, “Avoid using Write‑Host.”

[04:45] If we take a look at my code, we’re using Write‑Host. Write‑Host skips all the pipelines and goes directly to the screen. We can’t suppress Write‑Host. Whenever you have code that’s projecting anything to the screen, it actually slows down execution. Also, because it’s non‑suppressible, it’s considered a poor practice.

[05:05] What we’re going to do is we’re going to change that Cmdlet to Write‑Verbose, which is one of the  Cmdlets that was recommended for us to change it to. Now that we have Write‑Verbose, let’s go ahead and run the script analyzer against this code.

[05:21] All right, that’s one taken care of. It looks like I left an S up here, we have a warning about that. We also have another warning about using approved verbs.

[05:34] If you take a look, I’m using a verb called Gather. If you run the PowerShell Cmdlet, Get‑Verb, this will show you a list of all the approved verbs for Windows PowerShell.

[05:43] Now you can still use your own. The problem is is that part of the discoverability of the Cmdlets involve the verbs, and also the verbs tell us what action’s about to be taken on this particular object or functionality, what have you. If you start using your own verbs, then you’re going to add confusion and make it hard for people to use your code. What we’re going to do is we’re going to switch things over. You can see I’m now using the Cmdlet GetMyDataSet as opposed to Gather.

[06:13] Now when we run this one, I can see that everything has been fixed. That’s how you use the PowerShell Script Analyzer. You run it against your scripts, read what the description tells you to do. Now remember that this may not always apply to you. There is going to be situations where you may write code that has to be done this way. You can always use the Invoke‑ScriptAnalyzer’s parameters to remove rules so you don’t get flagged when they run.

[06:41] I hope this helps you write some better code. It is definitely going to help you keep it conformed to industry standards.

 

 

Videos You May Like

A Simple Introduction to Cisco CML2

0 3896 0

Mark Jacob, Cisco Instructor, presents an introduction to Cisco Modeling Labs 2.0 or CML2.0, an upgrade to Cisco’s VIRL Personal Edition. Mark demonstrates Terminal Emulator access to console, as well as console access from within the CML2.0 product. Hello, I’m Mark Jacob, a Cisco Instructor and Network Instructor at Interface Technical Training. I’ve been using … Continue reading A Simple Introduction to Cisco CML2

Cable Testers and How to Use them in Network Environments

0 727 1

This content is from our CompTIA Network + Video Certification Training Course. Start training today! In this video, CompTIA Network + instructor Rick Trader demonstrates how to use cable testers in network environments. Let’s look at some tools that we can use to test our different cables in our environment. Cable Testers Properly Wired Connectivity … Continue reading Cable Testers and How to Use them in Network Environments

Data Models in Business Analysis

0 200 0

This video is from our PMI-PBA Business Analysis for IT Analysts and Project Managers (PMI-PBA)® Certification now available at Interface Technical Training. Also see Steve’s PMP Project Management Certification Course: Project Management Professional (PMP®) Certification Video Training PMBOK® 6th Edition  Video Transcription: Data Models are part of the elicitation analysis in PMI-PBA. This is the way … Continue reading Data Models in Business Analysis

Write a Comment

Share your thoughts...

Please fill out the comment form below to post a reply.