- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/ネットワーク/Ping送信 - Test-Connection へ行く。
- 1 (2017-02-14 (火) 00:42:20)
- 2 (2017-02-14 (火) 01:14:39)
Ping送信 - Test-Connection
$ips = @('192.168.0.1','192.168.0.2','\\mypc1') $max = 10; while ($max--) { foreach ($ip in $ips) { Test-Connection -Count 1 $ip } }