So first remember everything in PowerShell is an object. What exactly is an object? It’s something that has some kind of properties. For example, a string can be an object. It has characters, a length along with other items. If you ever need to learn more about an object just remember Get-Member is your friend.…
All posts in February 2022
PowerShell Loops
In PowerShell scripting there are several types of loops. This page will explain what a loop is, the different types and how to know what loop to use for a particular task. So a loop just runs code over and over in a loop until some condition is met. One condition could mean that there…