Certifications / Microsoft

PowerShell 101: How to Run a PowerShell Script

by Team Nuggets
PowerShell 101: How to Run a PowerShell Script picture: A
Follow us
Published on March 12, 2019

There's no escaping repetitive, mundane tasks as an IT pro. Perhaps you have to monitor service on a server that keeps growing out of control due to a memory leak. Or maybe you have some important reports that need to be emailed every morning to your boss before he gets into the office. Either way, it can get old — fast.

Wouldn't it be nice if you had a way to automate some, if not all, of those tasks? It's time you learned howto use Microsoft's scripting language, PowerShell.

Let's take a look at an example PowerShell script that:

  1. checks if a computer is online

  2. initiates a remote session to connect to it

  3. creates an output that shows us if our script was successful or not

Are you ready to run a PowerShell script?

Getting Started: The Script

Below is the actual script that you can use to follow along with this tutorial. Just copy and paste it into the Windows PowerShell ISE.

<span style="color: #888888;">&lt;# Step 1
<span style="color: #dd4422;">.SYNOPSIS
<span style="color: #888888;">Tests a machine's connectivity and remoting
<span style="color: #dd4422;">.DESCRIPTION
<span style="color: #888888;">Tests a machine's connectivity using ping and remoting capabilities using PSSession
<span style="color: #dd4422;">.PARAMETER<span style="color: #888888;"> ComputerName
<span style="color: #888888;">Name of the computer that you want to run the command against
<span style="color: #dd4422;">.EXAMPLE
<span style="color: #888888;">Test–Remote –ComputerName DCNUGGET
<span style="color: #dd4422;">.EXAMPLE
<span style="color: #888888;">Test–Remote
<span style="color: #888888;">#&gt;

<span style="color: #888888;"># Step 2
<span style="color: #888888;"># parameters
<span style="color: #008800; font-weight: bold;">param (<span style="color: #996633;">$ComputerName = <span style="background-color: #fff0f0;">"localhost")

<span style="color: #888888;">#Step 3
<span style="color: #888888;">#test connectivity via ping, returns true/false
<span style="color: #008800; font-weight: bold;">function CanPing {
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #996633;">$response = <span style="color: #007020;">Test–Connection <span style="color: #996633;">$ComputerName –Quiet –ErrorAction SilentlyContinue

<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">if (!<span style="color: #996633;">$response)
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">write–host <span style="background-color: #fff0f0;">"Ping failed: $ComputerName."<span style="color: #ff0000; background-color: #ffaaaa;">; <span style="color: #008800; font-weight: bold;">return <span style="color: #996633;">$false}
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">else
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">write–host <span style="background-color: #fff0f0;">"Ping succeeded: $ComputerName"<span style="color: #ff0000; background-color: #ffaaaa;">; <span style="color: #008800; font-weight: bold;">return <span style="color: #996633;">$false}
}

<span style="color: #888888;">#Step 4
<span style="color: #888888;">#test remoting via sessions
<span style="color: #008800; font-weight: bold;">function CanRemote {
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #996633;">$session = <span style="color: #007020;">New–PSSession <span style="color: #996633;">$ComputerName –ErrorAction SilentlyContinue

<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">if (<span style="color: #996633;">$session <span style="color: #333333;">–is <span style="color: #003366; font-weight: bold;">[System.Management.Automation.Runspaces.PSSession])
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">Write–Host <span style="background-color: #fff0f0;">"Remote test succeeded: $ComputerName."}
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">else
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">Write–Host <span style="background-color: #fff0f0;">"Remote test failed: $ComputerName."}
}

<span style="color: #888888;">#Step 5
<span style="color: #008800; font-weight: bold;">if (CanPing <span style="color: #996633;">$ComputerName) {CanRemote <span style="color: #996633;">$ComputerName}

Step 1: Create a Synopsis, Description, Parameter, Example

This part of the script acts as a description for your intended users. It lets them know how to use it, what it does, and provides an example of the command usage. This is good practice if you are going to be creating tools for other people to use.

This step isn't necessary to make the script work, but it is helpful for anyone that is trying to understand how your script works. (You might stumble across this script in a few months and wonder what it does, even though you created it.)

<span style="color: #888888;">#Step 1
<span style="color: #888888;">&lt;#
<span style="color: #dd4422;">.SYNOPSIS
<span style="color: #888888;">Tests a machine's connectivity and remoting
<span style="color: #dd4422;">.DESCRIPTION
<span style="color: #888888;">Tests a machine's connectivity using ping and remoting capabilities using PSSession
<span style="color: #dd4422;">.PARAMETER<span style="color: #888888;"> ComputerName
<span style="color: #888888;">Name of the computer that you want to run the command against
<span style="color: #dd4422;">.EXAMPLE
<span style="color: #888888;">Test–Remote –ComputerName DCNUGGET
<span style="color: #dd4422;">.EXAMPLE
<span style="color: #888888;">Test–Remote
<span style="color: #888888;">#&gt;

Step 2: Define a parameter

If you execute the script from the command line without defining a target to ping, then the default value that matches $ComputerName will be used, which in this case is "localhost."

127.0.0.1 is the IP address for the loopback adapter if you don't feel like using localhost in your script.

<span style="color: #888888;"># Step 2
<span style="color: #888888;"># parameters
<span style="color: #008800; font-weight: bold;">param (<span style="color: #996633;">$ComputerName = <span style="background-color: #fff0f0;">"localhost")

Step 3: Create the First Function

The functions in this script define the two things that the script is capable of doing. CanPing uses the Test-Connection applet, which is a much more powerful version of ping. The result of this action is called $response.

Test-Connection allows you to test multiple hosts simultaneously, and ping different computers on the network — by setting the source and destination parameters in the command.

-Quiet is used to suppress the output of the command, making for a cleaner script, while -ErrorAction with SilentlyContinue lets the Test-Connection finish its four-packet salvo regardless of its success. Instead, it will return True or False.

The "if" statement in the first line says that if an Kill occurs (!$response), then display a message that says "Ping failed" followed by the target name that failed. The "else" statement looks for any other outcome (ie, a successful connection) and replies "Ping succeeded" followed by the target name.

<span style="color: #888888;">#Step 3
<span style="color: #888888;">#test connectivity via ping, returns true/false
<span style="color: #008800; font-weight: bold;">function CanPing {
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #996633;">$response = <span style="color: #007020;">Test–Connection <span style="color: #996633;">$ComputerName –Quiet –ErrorAction SilentlyContinue

<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">if (!<span style="color: #996633;">$response)
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">write–host <span style="background-color: #fff0f0;">"Ping failed: $ComputerName."<span style="color: #ff0000; background-color: #ffaaaa;">; <span style="color: #008800; font-weight: bold;">return <span style="color: #996633;">$false}
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">else
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">write–host <span style="background-color: #fff0f0;">"Ping succeeded: $ComputerName"<span style="color: #ff0000; background-color: #ffaaaa;">; <span style="color: #008800; font-weight: bold;">return <span style="color: #996633;">$false}
}

Step 4: Create the Second Function

The second function works very similarly to the first one, except it checks to see if it can initiate a PowerShell session via the New-PSSession applet. The $session parameter stores the result.

Again, the "if" and "else" statements check to see if an answer is positive or negative, and then display the messages appropriate to the state of the command's output.

<span style="color: #888888;">#Step 4
<span style="color: #888888;">#test remoting via sessions
<span style="color: #008800; font-weight: bold;">function CanRemote {
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #996633;">$session = <span style="color: #007020;">New–PSSession <span style="color: #996633;">$ComputerName –ErrorAction SilentlyContinue

<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">if (<span style="color: #996633;">$session <span style="color: #333333;">–is <span style="color: #003366; font-weight: bold;">[System.Management.Automation.Runspaces.PSSession])
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">Write–Host <span style="background-color: #fff0f0;">"Remote test succeeded: $ComputerName."}
<span style="color: #ff0000; background-color: #ffaaaa;">   <span style="color: #008800; font-weight: bold;">else
<span style="color: #ff0000; background-color: #ffaaaa;">       {<span style="color: #007020;">Write–Host <span style="background-color: #fff0f0;">"Remote test failed: $ComputerName."}
}

Step 5: Link the Two Functions Together

The script starts with CanPing, and then moves onto the CanRemote function in this part of the script. If CanPing fails, then the script won't move onto the next part of the script and will stop. If the CanPing is successful, then the CanRemote function gets executed afterward.

This is a very handy script for teaching you some of the basic principles of how to create functions and parameters within Powershell.

<span style="color: #888888;">#Step 5
<span style="color: #008800; font-weight: bold;">if (CanPing <span style="color: #996633;">$ComputerName) {CanRemote <span style="color: #996633;">$ComputerName}

Having Trouble Running the Script?

If you tried to run this script and got Kill messages, check and see if you have your execution policy set to run scripts on your computer. For a more detailed explanation on how to do this, check out Garth Schulte's PowerShell training. Garth covers everything we discussed in this post and more. So, if you are stuck or want to build your PowerShell knowledge, Garth can help you out.  

Wrapping it Up

PowerShell can help you to do almost anything you need via the command line. It is heavily integrated into the Windows environment. It also works on Active Directory servers, meaning tasks such as importing new users can be turned into a quick task instead of using the GUI and taking much longer in the process.

PowerShell automates many daily tasks, freeing you to pursue more meaningful work while scripts get through the monotonous tasks. PowerShell skills are vital to build, whether you are a system administrator or a DevOps engineer. Don't wait to start learning PowerShell.


Download

By submitting this form you agree to receive marketing emails from CBT Nuggets and that you have read, understood and are able to consent to our privacy policy.


Don't miss out!Get great content
delivered to your inbox.

By submitting this form you agree to receive marketing emails from CBT Nuggets and that you have read, understood and are able to consent to our privacy policy.

Recommended Articles

Get CBT Nuggets IT training news and resources

I have read and understood the privacy policy and am able to consent to it.

© 2024 CBT Nuggets. All rights reserved.Terms | Privacy Policy | Accessibility | Sitemap | 2850 Crescent Avenue, Eugene, OR 97408 | 541-284-5522