[PowerShell] 간이 네트워크 모니터링 도구
$computers = @('www.google.com', 'www.naver.com', 'www.google.com', 'www.google.com', '1.1.1.1', '1.1.1.1', '1.1.1.1', '1.1.1.1', '1.1.1.1', '1.1.1.1', '1.1.1.1')$switches = @('www.google.com', 'www.naver.com')$servers = @('www.google.com', 'www.naver.com')$timeout = 1000$task = $computers | % { [Net.NetworkInformation.Ping]::new().SendPingAsync($_, $timeout)}$task2 = $switches | % { [Net...