368d6fafea
Code backup
2 lines
233 B
PowerShell
2 lines
233 B
PowerShell
1..254 | ForEach-Object {Test-Connection -ComputerName "172.16.83.$_" -Count 1 -ErrorAction:SilentlyContinue -AsJob} | Get-Job | Receive-Job -Wait -AutoRemoveJob | Where-Object {$_.StatusCode -eq 0} | Select-Object -Property Address
|