December 2013
Intermediate to advanced
1872 pages
153h 31m
English
Here are some of the common terms used when working with PowerShell:
Cmdlet—This is the name given to the built-in commands in PowerShell. Cmdlets are the most basic component within PowerShell and are used when doing anything in PowerShell. They are typically of the form “verb-noun.” Cmdlets also have arguments called parameters, and values can be passed to these parameters.
Script—With automation comes the requirement for scripts. Using scripts is as simple as putting a single cmdlet in a file and then executing the file. In ...