powershell foreach for elements code example
Example 1: foreach powershell
ForEach($user in $users){
Write-Output $user
}
Example 2: powershell for each loop
> $array = @("item1", "item2", "item3")
> foreach ($element in $array) { $element }
item1
item2
item3
> $array | foreach { $_ }
item1
item2
item3