Modules in Powershell
- A module can be
- Binary
- Script
- Dynamic Modules
- Manifest Modules
- Powershell Gallery:
- Collection of reusable modules hosted over the web Refer Here
Enumerating, filtering, Sorting and Selecting, Grouping
- Enumerations can be done using looping constructs like ForEach-Object
- For filtering we can use Where-Object
- Select-Object is used for Selecting
- Sort-Object is used for Sorting the Items
- Measure-Object can be used to measure the items
- Compare-Object can compare two objects
- Export-CSV
