Schleifen die zweite

This commit is contained in:
onur 2025-02-25 21:10:13 +01:00
parent ca39a7976f
commit 97679f39e6
2 changed files with 9 additions and 1 deletions

Binary file not shown.

View File

@ -24,4 +24,12 @@ for($i=10; $i -lt 20; $i++) {
if($i -eq 15) { if($i -eq 15) {
continue } continue }
$i } $i }
Write-Host $i Write-Host $i
$elemente = Get-ChildItem
forEach($elemente in $elemente) {
$elemente.Name }
$elemente = Get-ChildItem
Get-ChildItem | ForEach-Object {
$_.Name }