Intro to Powershell, Part 2 - Types
In the previous installment, I discussed 3 basic commands that help you navigate around Powershell. This post is focused on the data Powershell makes available through commands, and how you can manipulate it. Types are where Powershell starts to look more like a scripting language than just a shell. First a few basics. Powershell is object-oriented. This deviates from most shells like Cmd or Bash, where it is really string based. »