通过 Powershell 或 AzureCLI 在 Microsoft 中验证 DNS

通过 Powershell 或 AzureCLI 在 Microsoft 中验证 DNS

我对 admin.microsoft.com 有疑问。是否可以通过 PowerShell 或 Azure CLI 验证 DNS 或执行与此页面类似的操作?

图像

答案1

我假设你想验证你已已添加到O365。为此,您可以使用确认-MsolDomain以及关联的 cmdlet。例如:

# Authenticate to MS Online
Connect-MsolService

# list current domain(s) and their status
Get-MsolDomain

# Add a new domain
New-MsolDomain -Name 'contoso.com'

# Get the DNS TXT record verification details
Get-MsolDomainVerificationDns -DomainName 'contoso.com' -Mode DnsTxtRecord

### Create your TXT record before continuing ###

# Verify your domain
Confirm-MsolDomain -DomainName 'contoso.com'

相关内容