by mtsimmons | Mar 17, 2023 | PowerShell Basics
Functions are an essential part of any programming language, and PowerShell is no exception. In this article, we will cover everything you need to know about functions in PowerShell. We will start with what functions are, how to create them, how to call them, and how...
by mtsimmons | Mar 17, 2023 | PowerShell Basics
Loops are an essential part of any programming language, and PowerShell looping is no exception. Loops allow you to repeat a block of code multiple times, which can be useful for a wide range of tasks, such as processing large amounts of data or performing repetitive...
by mtsimmons | Mar 16, 2023 | PowerShell Basics
Conditional statements are an essential part of programming languages, and PowerShell is no exception. Conditional statements allow us to execute specific code blocks based on specific conditions. In this article, we’ll explore the various types of conditional...
by mtsimmons | Mar 16, 2023 | PowerShell Basics
PowerShell hashtables are a type of collection that allow you to store data in a key-value format. They’re incredibly useful for storing and retrieving data, and they’re a common feature in PowerShell scripts. In this article, we’ll take a look at...
by mtsimmons | Mar 15, 2023 | PowerShell Basics
PowerShell arrays are an essential feature of the PowerShell scripting language. But if you haven’t used one (or haven’t realized that you have), you might need to get a little education on the topic! What is an array exactly? Arrays are collections of...
by mtsimmons | Mar 13, 2023 | PowerShell Basics
PowerShell is a versatile and powerful scripting language that can be used to automate various tasks on your system. One common task that often requires the use of PowerShell is working with strings. In this article, we’ll cover some of the basics of working...