PowerShell tutorial: The basics of PowerShell scripting

Illustration: Lisa Hornung

Microsoft PowerShell, generally referred to as Windows PowerShell, offers a handy way to automate various chores whether you’re working on a Windows Server or a Windows workstation.

System administrators would do well to learn this scripting language as a skill with which to automate tasks–particularly repetitive tasks–and develop advanced administrative tasks to help lighten their workloads and execute operations via predictable, proven commands. These commands can be run on local systems or remote ones using the PowerShell remoting function, for example, to make updates to the Windows registry on multiple systems.

SEE: Feature comparison: Time tracking software and systems (TechRepublic Premium)

Note that PowerShell isn’t a programming language like Visual Studio Code (aka VS Code) so much as a scripting language. PowerShell variables, cmdlets, modules and providers are the foundation and constitute powerful PowerShell tools to help get the job done.

  • A variable is a term to identify a specific value for easy reference and reuse.
  • A cmdlet is a built-in PowerShell command (The Get command cmdlet being one of the most common with multiple uses such as retrieving existing settings or seeking assistance via the get-help cmdlet).
  • A module is a package containing multiple objects such as cmdlets, variables and more.
  • A provider is a .NET program which provides access to information such as the registry, aliases, functions, variables, file systems and the overall operating system environment.

Note that Windows PowerShell, which runs on the Windows OS exclusively, is augmented by PowerShell Core, which is an advanced version capable of running on the operating systems Windows, Mac and Linux in the same manner Visual Studio Code does.

Here is a Windows PowerShell scripting tutorial intended as a beginner’s guide to illustrate scripting basics to help beginners as they start working with existing Windows PowerShell scripts or PowerShell cmdlets or building new ones.

You can launch Windows PowerShell from the Start Menu under the Windows PowerShell folder in order to orient yourself to use this PowerShell tutorial. The two programs to work with are Windows PowerShell and Windows PowerShell ISE (Integrated Scripting Environment). The first executable is the command prompt interface, and the second is a GUI-based interface which appears as follows:

I prefer using Windows PowerShell ISE for PowerShell scripting since it provides a PowerShell console window to permit command prompt functionality along with a handy toolbar ribbon and command references listed on the right which you can click to insert PowerShell commands as well as learn more about them.

Note that the default executables are 64-bit but a 32-bit PowerShell version of each can be found in this folder for backwards-compatibility purposes.

1. PS1 files

PowerShell syntax can be a bit daunting for the newcomer, so let’s start with the basics of scripts which are also called PS1 files. A Windows PowerShell script is really nothing more than a simple text file that can be run in either Windows PowerShell or Windows PowerShell ISE. The PowerShell scripting language operates by executing a series of PowerShell commands (or a single one), with each command appearing on a separate line. For the text file to be treated as a PowerShell script, its filename needs to end in .PS1 to connote a PowerShell extension.

The simplest, most basic PowerShell example is a file called Datecheck.ps1, which contains the following entry:

Get-Date

Running this will provide you output similar to the following:

Tuesday, May 10, 2022 3:20:04 pm

2. Execution permissions

To prevent the execution of malicious scripts, PowerShell enforces an execution policy. By default, the execution policy is set to Restricted, which means that PowerShell scripts will not run. You can determine the current execution policy by using the following cmdlet:

Get-ExecutionPolicy

The execution policies you can use are:

  • Restricted–Scripts won’t run.
  • RemoteSigned–Scripts created locally will run, but those downloaded from the internet will not (unless they are digitally signed by a trusted publisher).
  • AllSigned–Scripts will run only if they have been signed by a trusted publisher.
  • Unrestricted–Scripts will run regardless of where they have come from and whether they are signed.

You can set PowerShell’s execution policy by using the following cmdlet:

Set-ExecutionPolicy <policy name>

Note: when typing in the PowerShell command prompt you can enter part of the command and hit Tab to autofill the rest (or show multiple choices matching what you’ve put in). For instance, typing Set-Ex and pressing tab will autofill the entire Set-ExecutionPolicy command and save you some time.

3. Running a script

For years now, if you wanted to run an executable file from the command line the practice was to navigate to the file’s path and then type the name of the executable file. However, this age-old method doesn’t work for PowerShell scripts.

If you want to execute a PowerShell script, you will usually have to type the full path along with the filename. For example, to run a script named SCRIPT.PS1, you might type:

C:\Scripts\Script.ps1

The big exception is that you can execute a script by simply typing its name if the folder containing the script is in your system’s path. There is also a shortcut you can use if you are already in the folder containing the script. Instead of typing the script’s full path in such a situation, you can enter .\ and the script’s name. For example, you might type:

.\Script.ps1

4. Pipelining

Pipelining is the term for feeding one command’s output into another command. This allows the second command to act on the input it has received. To pipeline two commands (or cmdlets), simply separate them with the pipe symbol (|).

To help you understand how pipelining works, imagine that you want to create a list of processes that are running on a server and sort that list by process ID number. You can get a list of processes by using the Get-Process cmdlet, but the list will not be sorted. However, if you pipeline the cmdlet’s output into the Sort-Object ID command, the list will be sorted. The string of commands used looks like this:

Get-Process | Sort-Object ID

5. Variables

Although you can use pipelining to feed one command’s output into another command, sometimes pipelining alone won’t get the job done. When you pipeline a command’s output into another command, that output is used immediately. Occasionally, you may need to store the output for a while so that you can use (or reuse) it later. This is where a PowerShell variable can come into play.

It’s easy to think of a variable as a repository for storing a value, but in PowerShell, a variable can store a command’s full output. For example, suppose you want to store the list of processes running on a server as a variable. To do so, you could use this line of code:

$a = Get-Process

Here, the variable is named $a. If you want to use the variable, simply call it by name. For example, typing $a prints the variable’s contents on the screen.

You can assign a variable to the final output of multiple commands that have been pipelined together. Just surround the commands with parentheses. For example, to sort the running processes by process ID and then assign the output to a variable, you could use this command:

$a = (Get-Process | Sort-Object ID)

Running “echo $a” will then execute the command you assigned to the variable.

6. The @ symbol

By using the @ symbol, you can turn the contents of a list into an array. For example, take the following line of code, which creates a variable named $Procs that contains multiple lines of text (an array):

$procs = @{name="explorer","svchost"}

You can also use the @ symbol when the variable is used, to ensure that it is treated as an array rather than a single value. For instance, the line of code below will run the Get-Process cmdlet against the variable I defined a moment ago. In doing so, Windows will display all the processes used by Windows Explorer and Svchost. Notice how the @ symbol is being used in front of the variable name rather than the dollar sign that we usually see used:

Get-Process @procs

7. Split

The split operator splits a text string based on a character you designate. For example, suppose that you want to break a sentence into an array consisting of each individual word in the sentence. You could do so by using a command like this one:

"This is a test" -split " "

The result would look like this:

This

is

a

test

8. Join

Just as split can split a text string into multiple pieces, the join operator can combine multiple blocks of text into one. For example, this line will create a text string consisting of my first name and last name:

"Scott","Matteson" -join " "

The space between the quotation marks at the end of the command tells Windows to insert a space between the two text strings.

9. Breakpoints

Running a newly created PowerShell script can have unintended consequences if the script contains bugs. One way to protect yourself is to insert breakpoints at strategic locations within your script. That way, you can make sure that the script is working as intended before you process the entire thing.

The easiest way to insert a breakpoint is by line number. For instance, to insert a breakpoint on the 10th line of a script, you could use a command like this:

Set-PSBreakpoint -Script C:\Scripts\Script.ps1 -Line 10

You can also bind a breakpoint to a variable. So, if you wanted your script to break any time the contents of a$ changed, you could use a command like this one:

Set-PSBreakpoint -Script C:\scripts\Script.ps1 -variables a

Notice that I didn’t include the dollar sign after the variable name.

There are a number of verbs you can use with PSBreakpoint including Get, Enable, Disable and Remove.

10. Step

When debugging a script, it may sometimes be necessary to run the script line by line. To do so, you can use the Stepping process in PowerShell ISE to cause the script to pause after each line regardless of whether a breakpoint exists. Utilize the functions outlined in the table below.

Image: Microsoft

For all the latest Technology News Click Here 

 For the latest news and updates, follow us on Google News

Read original article here

Denial of responsibility! TechNewsBoy.com is an automatic aggregator around the global media. All the content are available free on Internet. We have just arranged it in one platform for educational purpose only. In each content, the hyperlink to the primary source is specified. All trademarks belong to their rightful owners, all materials to their authors. If you are the owner of the content and do not want us to publish your materials on our website, please contact us by email – [email protected]. The content will be deleted within 24 hours.