PowerShell을 사용하여 호스트 이름에서 IP 주소 확인 Powershell을 사용하여 호스트 이름에서 ipaddress를 가져오려고 하는데 방법을 알 수가 없습니다. 도와드릴까요?다음과 같이 GetHostAddresses를 사용하여 모든 IP 주소를 가져올 수 있습니다. $ips = [System.Net.Dns]::GetHostAddresses("yourhosthere") 다음과 같이 반복할 수 있습니다. [System.Net.Dns]::GetHostAddresses("yourhosthere") | foreach {echo $_.IPAddressToString } 서버는 둘 이상의 IP를 가질 수 있으므로 IP 배열을 반환합니다.이것은 멋지고 단순하며 모든 노드를 가져옵니다. $ip = Resol..