Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save IISResetMe/14f4fdda3a91df4bada48b661401734d to your computer and use it in GitHub Desktop.
Save IISResetMe/14f4fdda3a91df4bada48b661401734d to your computer and use it in GitHub Desktop.
$array = 1..10
for ($i = 0; $i -lt $array.length; $i++) {
Write-Host "Loop #$($array[$i])"
if ($i = $array.length) { Write-Host "Last loop!" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment