IaC Practice
CtrlK
Powershell
Powershell
  • Introduction
    • History
    • Design
    • Using Powershell
    • Execution Policy
    • PowerShell Gallery
  • Install PowerShell 7
    • Visual Studio Code
    • Tests
    • Finally
  • Coding in PowerShell
    • Creating a module
    • Variables
      • Example
    • Types
    • Conditional Branching
      • if and elseif
      • Switch
    • Loops
      • For loop
      • ForEach
      • While
      • Do Until
    • Piping Commands
  • Remote Control
    • Remoting
    • Build
      • DHCP
    • Creating Users
  • Configuration at Scale
    • Desired State Configuration
    • DSC Example
    • MOF File
    • Apply the Configuration
    • Testing
    • Remove the Configuration
    • Finally
Powered by GitBook
On this page
  1. Coding in PowerShell

Piping Commands

In Linux and in PowerShell, one of the most powerful things we can do is to pipe the output of one command to be the input of another. The pipe symbol is |

Dir | Format-Table | Out-Host
PreviousDo UntilNextRemote Control

Last updated 1 year ago