1
00:00:01,040 --> 00:00:04,720
Hello everyone, and welcome back to the next lesson in

2
00:00:04,720 --> 00:00:07,170
Learning the PowerShell Language.

3
00:00:07,170 --> 00:00:07,920
In this lesson,

4
00:00:07,920 --> 00:00:10,430
we're going to look how to work with the common PowerShell

5
00:00:10,430 --> 00:00:15,290
operators. In PowerShell, it's really all about doing. You're

6
00:00:15,290 --> 00:00:18,160
either getting something or setting something or removing

7
00:00:18,160 --> 00:00:20,140
something or comparing something.

8
00:00:20,140 --> 00:00:24,410
And for these operations, we need operators. Learning the

9
00:00:24,410 --> 00:00:28,790
operators are a critical part of the PowerShell language. This is

10
00:00:28,790 --> 00:00:31,340
how you're going to connect things together.

11
00:00:31,340 --> 00:00:34,200
Obviously, you can use these operators interactively at the

12
00:00:34,200 --> 00:00:36,520
console, and when you get to PowerShell scripting,

13
00:00:36,520 --> 00:00:40,140
you will continue to use PowerShell operators.

14
00:00:40,140 --> 00:00:42,120
Now the operators I'm going to show you really are

15
00:00:42,120 --> 00:00:44,640
very basic and really simple to use.

16
00:00:44,640 --> 00:00:47,240
There's really nothing complicated here.

17
00:00:47,240 --> 00:00:50,890
I do encourage you to read the help documentation. There are a

18
00:00:50,890 --> 00:00:54,620
number of about_ something operators. So you can just use a

19
00:00:54,620 --> 00:00:57,440
wildcard search, and you can see all of them.

20
00:00:57,440 --> 00:01:02,440
And many of the operators will work also in Windows PowerShell 5.1.

21
00:01:02,440 --> 00:01:05,320
In fact, I'm expecting a number of you may have some

22
00:01:05,320 --> 00:01:06,740
Windows PowerShell experience,

23
00:01:06,740 --> 00:01:09,910
so I don't think these operators will be new to you.

24
00:01:09,910 --> 00:01:12,500
There are some new operators in PowerShell 7 we'll get

25
00:01:12,500 --> 00:01:14,480
to, but really, for the most part,

26
00:01:14,480 --> 00:01:17,290
everything I'm going to show should also work in Windows

27
00:01:17,290 --> 00:01:23,760
PowerShell 5.1. Now the operators, as I mentioned,

28
00:01:23,760 --> 00:01:27,270
are really quite simple. It's nothing complicated here.

29
00:01:27,270 --> 00:01:30,400
This module is more of me going through and at least

30
00:01:30,400 --> 00:01:34,560
illustrating these operators and showing you how they work.

31
00:01:34,560 --> 00:01:36,600
Demonstrations really are very simple.

32
00:01:36,600 --> 00:01:36,940
In fact,

33
00:01:36,940 --> 00:01:40,570
I'm not going to do any live demonstration as I normally do. I'm

34
00:01:40,570 --> 00:01:42,840
going to do everything here in the slides.

35
00:01:42,840 --> 00:01:43,530
However,

36
00:01:43,530 --> 00:01:48,330
all of the code that I'm using in my slides to demonstrate these

37
00:01:48,330 --> 00:01:56,000
operators is also available in the course downloads. So you can grab those downloads and try these things out on your own.

