I used the following method to generate my list of mac addresses.
# First, get a list of mac address. 1..150 | ForEach-Object { '{0:X12}' -f $_ } # Second step: Before we import we need to add a colon ":" every two characters 1..150|%{((('{0:X12}' -f $_) -split '(..)')|?{$_}) -join ":"}
What is happening here
- We list from the number 1 to 150
1..150