PowerShell Special Characters As in every programming and scripting language, in PowerShell there are special characters that you can use to represent characters, that we are not able to find in the standard set. In this tutorials we will see those PowerShell special Characters and what is their ...
PowerShell Force Password Change Multiple Users
PowerShell Force Password Change Multiple Users PowerShell Force Password Change Multiple Users Scenario: A friend of mine told that he has a task to do and it will take time to perform it. I have asked him what is was it and he told me that he has to ensure that all users in his Active Directory ...
PowerShell Reserved Words
PowerShell Reserved Words In this tutorial we will see the list of PowerShell reserved words. As in every programming / scripting language there are some words that have special meaning. In my opinion, you should avoid using those words for other purposes. This will help you avoid undesired results ...
PowerShell Split Operator
PowerShell Split Operator In another tutorial we saw how we are able to use Join operator and what we are able to do with it. In this tutorial we will look into PowerShell Split Operator, how we are able to use it and what we can do with it. The split operator allows you to split a string or ...
PowerShell Redirection Operators
PowerShell Redirection Operators In this tutorial we will go through PowerShell Redirection Operators. PowerShell by default sends the output of the commands, warnings and errors in the console. You are able to send those outputs to files in order to store them. There are different ways to redirect ...
PowerShell Hardware Inventory Script – Part 2
PowerShell Hardware Inventory Script - Part 2 Scenario: PowerShell Hardware Inventory Script - Part 2. In Part 1, we saw how we are able to create a simple inventory of our computers based on Active Directory. In this part we will go through the minor additional features of the script that in ...