Remove First Entry in Fixed Array

Here is a quick little trick for removing the first entry in a fixed size array. This can be used when you receive the error message: Exception calling “RemoveAt” with “1” argument(s): “Collection was of a fixed size.”

# Remove first entry
$array = $array[1..($array.Length-1)]


Example