1 2 3 4 5 6 7 8 9 10 |
foreach($segundo in 1..254) { foreach($tercero in 1..254) { $ip=("192.168."+$segundo+"."+$tercero) $ip New-NetIPAddress -InterfaceAlias Wi-Fi -IPAddress $ip -PrefixLength 24 pause } } |