Let’s start with Powershell – part 3

Reading from user, pipes, enviroment variables. Short Summary You have found out about basics of the powershell, what it is, how to run it and how commandlets are build. Also, you allready know about types of variables. Now let’s deal with Reading from user, pipes and envirment variables. Reading user…

Let’s start with Powershell – part2

Be sure to check first part of this short powershell tutorial here Variables In this part I will show you the most common types of variables. Variables are labels we use to store data that can vary (hence the name “variable”). In PowerShell variables are referenced and dereferenced by appending…

Let’s start with Powershell – part1

What’s a Powershell PowerShell is provided by Microsoft Corporation and is a very usable and powerful scripting language. It’s an object oriented shell. The standard form of the command in Powershell is: verb-noun verb is indicating the action and a noun indicating the object for example: get-childitem, remove-Item PowerShell itself…