Category: Tutorial

Back to basics: Hashtables

One of the most usefull features in PowerShell are arrays, i already talked about them in a previous post. Today i’ll write about their sister: Hashtables. Hashtables are really awesome for your daily scripting work, in many scripts they are at the center becauseyou can access item not  only with the index, but by whatever…




Back to Basics: Arrays

In PowerShell, arrays are a wonderfull and very powerfull tools which will help you in your daily labor. Today, i wanna speak about that, returning to the basics and help you mastering it. Mosts of your scripts deal with multiple servers, files, and more. PowerShell arrays can’t be used like any other data types, you…




Back to basics: The pipeline

Here we go again! Another Power The Shell blog post. Today, let’s go back to basics ! We’ll talk about the pipeline. If I read the definition in a dictionary, it’s common sense for another people out of the PowerShell business that it’s something that is transporting gasoil from one point to another. Well, it’s…




Using legacy executables

This post is coming after a discussion on twitter about how to submit arguments ton an .exe files after a tips on powershell.com. I’m not agree at all with this technic, this is not a “powershell” way to do things. All the time i say that there are many ways to script and bypass a…