PowerShell Where-Object Count [With Examples]

PowerShell Where-Object Count

In this PowerShell tutorial, I will explain how to work with PowerShell Where-Object to get count with examples. To count the number of objects that meet certain criteria in PowerShell, you can use the Where-Object cmdlet to filter the objects and then pipe the output to the Measure-Object cmdlet. By selecting the Count property of … Read more

PowerShell where-object in array

PowerShell where-object in array

One of the most useful cmdlets in PowerShell is Where-Object, which allows you to filter objects from a collection based on their properties and values. This is especially useful when working with arrays, as it lets you quickly find and manipulate specific items within the array. In this PowerShell tutorial, we’ll explore how to use where-object … Read more

How to Check if a File Exists in PowerShell?

Check if a File Exists in PowerShell

Do you want to know how to check if a file exists in PowerShell? In this PowerShell tutorial, I have explained different methods of checking if a file exists in PowerShell. To check if a file exists in PowerShell, you can use the Test-Path cmdlet, which returns $true if the file is present and $false … Read more

PowerShell where-object not equal [With examples]

PowerShell Where-Object with -ne

PowerShell Where-Object allows you to filter objects based on their properties and values. We will see how to use the -ne operator with PowerShell Where-Object. We will see a complete example of “PowerShell where-object not equal“. In PowerShell, the Where-Object cmdlet is used to filter objects based on their properties, and the -ne operator stands … Read more

PowerShell where-object regex [With examples]

PowerShell where-object regex

In this PowerShell tutorial, I will discuss everything about the PowerShell where-object regex. I will show you how to use regex with where-object in PowerShell with examples. To use regular expressions (regex) with the PowerShell Where-Object cmdlet, you utilize the -match operator inside the script block to filter objects based on regex patterns. For example, … Read more

PowerShell Where-Object -NotLike Operator

PowerShell Where-Object -NotLike

One of the most useful cmdlets in PowerShell is Where-Object, which allows you to filter objects based on their properties. In this PowerShell tutorial, we will focus on the -NotLike operator used with Where-Object in PowerShell to exclude items that do not match a specified pattern. I will also show a few examples of the … Read more

PowerShell Where-Object Contains Examples

PowerShell Where-Object Contains

PowerShell Where-Object cmdlet allows you to filter objects based on their properties. In this PowerShell tutorial, we will focus on the Contains operator within the Where-Object cmdlet and how you can use it. I will also show you PowerShell Where-Object contains examples. In PowerShell, the Where-Object cmdlet is often used to filter objects based on their properties. To check if … Read more

PowerShell where-object multiple conditions [With 8 Examples]

PowerShell where-object multiple conditions Examples

Do you want to know how to use multiple conditions in PowerShell Where-Object? In this tutorial, I will explain everything with examples of “PowerShell where-object multiple conditions“. PowerShell Where-Object for Multiple Conditions PowerShell Where-Object cmdlet is used in a pipeline to filter out objects that do not match the specified criteria. You can use it … Read more

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

100 PowerShell cmdlets download free

100 POWERSHELL CMDLETS E-BOOK

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