Powershell WHILE
Zur Navigation springen
Zur Suche springen
$x = 1
$val = $($args[0])
while($val -ne $x)
{
$val++
Write-Host $val
}