«   2025/11   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
Tags more
Archives
Today
Total
11-07 02:58
관리 메뉴

+1-1+1-1+1-1+1-1...

허용 도메인 MX 레코드 수집하기 본문

NT/Mail & Exchange

허용 도메인 MX 레코드 수집하기

투명인간 2021. 3. 23. 20:11
728x90
try{
$domains =@((Get-AcceptedDomain).DomainName)
$domains | resolve-dnsname -Type MX -Server 8.8.8.8 -ErrorAction Continue | where {$_.QueryType -eq "MX"} | Select Name,NameExchange | Sort Name | Export-Csv C:\AcceptDominList.csv -NoTypeInformation -Encoding UTF8
}
catch{
$_.Exception.Message
}
반응형