powershell foreach array code example
Example 1: foreach loop powershell
foreach ($item in $items) {
}
Example 2: foreach powershell
ForEach($user in $users){
Write-Output $user
}
Example 3: powershell Foreach
$Items = "A", "B", "C"
foreach ($item in $items) {
Write-host $Item
}
$Items | Foreach-Object {
Write-host $_
}
Example 4: powershell foreach
ForEach-Object
[-InputObject <PSObject>]
[-Begin <ScriptBlock>]
[-Process] <ScriptBlock[]>
[-End <ScriptBlock>]
[-RemainingScripts <ScriptBlock[]>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]