I've tried different ways of storing random numbers into an array but I keep producing an error. PS doesn't like $a[$x]. Is there another way of looping through an array and dropping in numbers?
Basicly I have something like this,
$x = 0
while ($x -le 10) {
$a[$x] = Get-random -min 0 -max 9999
$x++
}
MacrossVF1