June 2011
Intermediate to advanced
400 pages
8h 29m
English
This chapter provides information and commands concerning the following topics:
• Creating and running scripts
• Registry modifications with PowerShell
When you pipeline, you take the output of one cmdlet and use it in a subsequent cmdlet to perform another operation. This simple act ensures that you can string together very simple cmdlets into complex operations. Some of the reasons you may wish to pipeline include the following:
• You need to pass data from the output of one cmdlet to a subsequent cmdlet.
• You need to perform multiple actions on one or more Exchange objects without having to do so individually.
• You need ...