PowerShell Where-Object in List

PowerShell Where-Object in List

In this PowerShell tutorial, I will explain how to use Where-object in a list in PowerShell. We will see various examples related to “PowerShell Where-Object in List“. In PowerShell, the Where-Object cmdlet is used to filter elements in a list based on specified conditions. For example, to find all items in a list of numbers … Read more

PowerShell Where-Object Between Two Dates

PowerShell Where-Object Between Two Dates

If you want to filter items using Where-Object based on dates, then check out this PowerShell tutorial. To filter objects by date in PowerShell using the Where-Object cmdlet, you can create DateTime objects for your desired date range and use comparison operators to specify the range. For example, to select files modified between two dates, you can use Get-ChildItem | … Read more

How to Convert Multiline String to Array in PowerShell?

Convert Multiline String to Array in PowerShell

Do you want to convert multiline string to array in PowerShell? In this PowerShell tutorial, I will explain how to convert a multiline string into an array using PowerShell using various methods and examples. To convert a multiline string to an array in PowerShell, you can use the -split operator with the newline character “n”or … Read more

How to Sort an Array of Objects in PowerShell?

Sort an Array of Objects in PowerShell

To sort an array of objects, PowerShell provides Sort-Object cmdlet. In this PowerShell tutorial, we’ll explore how to use this cmdlet to sort arrays of objects in PowerShell with real examples. To sort an array of objects in PowerShell, use the Sort-Object cmdlet specifying the property names to sort on. For instance, $arrayOfObjects | Sort-Object … Read more

How to Convert Object to Array in PowerShell?

Convert Object to Array in PowerShell

Do you need to convert an object to an array in PowerShell? In this PowerShell tutorial, I will explain how to convert the object to an array in Powershell using various methods. To convert an object to an array in PowerShell, you can cast the object to an array type by prefixing it with [array], … Read more

How to Check an Array for Two Conditions in PowerShell?

Check an Array for Two Conditions in PowerShell

Do you want to know how to check an array for two conditions in PowerShell? In this PowerShell tutorial, I will explain how to check an array for two conditions in PowerShell. To check an array for two conditions in PowerShell, you can use the -and operator within a Where-Object filter or an if statement. … Read more

How To Add Multiple Values To Array In PowerShell?

Add Multiple Values To Array In PowerShell

Do you need to add multiple values to an array in PowerShell? In this PowerShell tutorial, I will show you how to add multiple values to an array in PowerShell using various methods and examples. To add multiple values to an array in PowerShell, you can use the += operator to append each value. For … Read more

How to Convert an ArrayList to an Array in PowerShell?

Convert an ArrayList to an Array in PowerShell

There might be a situation where you might be required to convert an ArrayList to an array in PowerShell. In this PowerShell tutorial, I will show you how to convert an ArrayList to an array in PowerShell using various methods. To convert an ArrayList to an array in PowerShell, use the ToArray() method on the … Read more

How to Read JSON File into Array in PowerShell?

Read JSON File into Array in PowerShell

JSON (JavaScript Object Notation) is a lightweight data-interchange format that is easy for humans to read and write and easy for machines to parse and generate. In this PowerShell tutorial, I will explain how to read a JSON file into an array in PowerShell. To read a JSON file into an array in PowerShell, use … Read more

100 PowerShell cmdlets download free

100 POWERSHELL CMDLETS E-BOOK

FREE Download an eBook that contains 100 PowerShell cmdlets with complete script and examples.