2017年8月30日

【PowerShell】pingを送信する


pingを送信するには、Test-Connectionコマンドレットを使います。

構文
Test-Connection [-ComputerName] <コンピュータ名>

PS C:\work> Test-Connection server1

Source        Destination     IPV4Address      IPV6Address                              Bytes    Time(ms)
------        -----------     -----------      -----------                              -----    --------
PC01          server1         192.168.1.1                                               32       0
PC01          server1         192.168.1.1                                               32       0
PC01          server1         192.168.1.1                                               32       0
PC01          server1         192.168.1.1                                               32       0
指定するコンピュータ名はIPアドレスでも大丈夫です。

あと、このTest-Connectionですが、非常に時間がかかります。
1回の送信に10秒ぐらいかかります。
ですので、普通にpingコマンドを打ったほうがいいように思われます。



スポンサーリンク