external help file | Module Name | online version | schema |
---|---|---|---|
PSNetScanners.dll-Help.xml |
PSNetScanners |
2.0.0 |
Parallel ICMP scanner.
Test-PingAsync
[-Target] <String[]>
[-BufferSize <Int32>
[-ResolveDns] [-Ttl <Int32>]
[-DontFragment]
[-ThrottleLimit <Int32>]
[-ConnectionTimeout <Int32>]
[<CommonParameters>]
Test-PingAsync
is a PowerShell cmdlet that ICMP echo-requests in parallel using Ping.SendPingAsync
Method. In essence, it's like Test-Connection
with less options but faster.
PS ..\> Test-PingAsync google.com, github.com
Source Destination Address Latency Status DnsResult
------ ----------- ------- ------- ------ ---------
DESKTOP-1111111 google.com 142.251.133.206 8 ms Success
DESKTOP-1111111 github.com 20.201.28.151 37 ms Success
PS ..\> $result = Test-PingAsync 8.8.8.8, 8.8.4.4, 1.1.1.1 -ResolveDns
PS ..\> $result
Source Destination Address Latency Status DnsResult
------ ----------- ------- ------- ------ ---------
DESKTOP-1111111 8.8.8.8 8.8.8.8 8 ms Success dns.google
DESKTOP-1111111 8.8.4.4 8.8.4.4 8 ms Success dns.google
DESKTOP-1111111 1.1.1.1 1.1.1.1 8 ms Success one.one.one.one
PS ..\> $result[0].DnsResult
Status : Success
HostName : dns.google
AddressList : {8.8.8.8, 8.8.4.4}
Aliases : {}
PS ..\> 1..20 | ForEach-Object { "192.168.1.$_" } | Test-PingAsync -ConnectionTimeout 200
Source Destination Address Latency Status DnsResult
------ ----------- ------- ------- ------ ---------
DESKTOP-1111111 192.168.1.1 192.168.1.1 0 ms Success
DESKTOP-1111111 192.168.1.5 192.168.1.5 0 ms Success
DESKTOP-1111111 192.168.1.14 192.168.1.14 3 ms Success
DESKTOP-1111111 192.168.1.7 192.168.1.7 137 ms Success
DESKTOP-1111111 192.168.1.3 192.168.1.3 204 ms Success
DESKTOP-1111111 192.168.1.2 * * TimedOut
DESKTOP-1111111 192.168.1.4 * * TimedOut
DESKTOP-1111111 192.168.1.6 * * TimedOut
DESKTOP-1111111 192.168.1.8 * * TimedOut
DESKTOP-1111111 192.168.1.9 * * TimedOut
DESKTOP-1111111 192.168.1.10 * * TimedOut
DESKTOP-1111111 192.168.1.11 * * TimedOut
DESKTOP-1111111 192.168.1.12 * * TimedOut
...
...
Specifies one or more remote computers, Uris or Ip addresses to test connectivity.
Type: String[]
Parameter Sets: (All)
Aliases: ComputerName, HostName, Host, Server, Address
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False
Specifies the size, in bytes, of the buffer sent with this command.
Note
The default value is 32.
Type: Int32
Parameter Sets: (All)
Aliases: bfs
Required: False
Position: Named
Default value: 32
Accept pipeline input: False
Accept wildcard characters: False
Specifies a timeout in milliseconds for each async task.
Note
- If a task is not completed after this timeout, the status will be
TimedOut
. - The default value for this parameter is
4000
(4 seconds).
Type: Int32
Parameter Sets: (All)
Aliases: timeout, to, ct
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This parameter sets the Don't Fragment flag in the IP header. See PingOptions.DontFragment
Property for more information.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Causes the cmdlet to attempt to resolve the DNS name of the target.
Type: SwitchParameter
Parameter Sets: (All)
Aliases: dns
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Specifies the maximum number of async tasks to run in parallel.
Note
The default value for -ThrottleLimit
is 50
.
Type: Int32
Parameter Sets: (All)
Aliases: tl
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Sets the maximum number of hops that an ICMP request message can be sent. The default value is controlled by the operating system. The default value for Windows 10 and higher is 128 hops.
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters. For more information, see about_CommonParameters.