News

How to use PowerShell objects, how to tease more info and functionality out of them and how objects can be useful in scripting scenarios.
PowerShell is a powerful tool for system administrators and IT professionals that enables them to manage, automate, and configure various systems and platforms. One of the key features of PowerShell ...
In the second part of this series, Brien shows how to import a .CSV file into a PowerShell array, including two methods for zooming in on just the specific data you need and filtering out the rest.
I was going nuts trying to sort an array into a random order. I was hoping for something in PowerShell that would be along the lines of Shuffle() in PHP or Ruby. Thankfully I figured out the easiest ...
In PowerShell and many languages, an array is a set of items all represented by a single variable. To explain arrays and how to manage them in PowerShell, let's start with the example of a set of ...
Prof. Powershell PowerShell Objects in a Pipeline By Jeffery Hicks 03/11/2014 I'm sure you've heard me stress repeatedly that PowerShell is all about the objects and specifically objects in a pipeline ...
The ForEach-Object cmdlet performs an operation on each item in a collection of input objects. The input objects can be piped to the cmdlet or specified using the InputObject parameter. Starting in ...
The Select-Object cmdlet selects specified properties of an object or set of objects. It can also select unique objects, a specified number of objects, or objects in a specified position in an array.
I'm trying to solve something similar to what is done in this StackOverflow question. I have an object with a nested array. I'd like the default view to be that nested array, but keep the object ...