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