國際版刪除域名的步驟

  • 第一步:使用Microsoft Azure Active Directory Module for Windows Powershell鏈接至office365 管理中心:

Connect-msolservice   (輸入全局管理員帳號) shell

  • 第二步:查看是否有用戶或者組在使用須要刪除的域名,並將這些用戶以及組或者聯繫人導出來到CSV 文件。
  • 輸入命令查看在使用須要被刪除的用戶(請將msoffice.linkpc.net 替換爲須要被刪除的域名):

Get-MsolUser -DomainName msoffice.linkpc.net -all | Export-Csv d:\user.csv dom

  • 輸入命令查看在使用須要被刪除的組和聯繫人:

Get-msolgroup -all | where {$_.proxyaddresses -match "msoffice.linkpc.net" } | Export-Csv d:\group.csv .net

Get-msolcontact -all | where {$_.emailaddress -match "msoffice.linkpc.net" } | Export-Csv d:\contact1.csv rem

Get-msolcontact -all | where {$_.ProxyAddresses -match "msoffice.linkpc.net" } | Export-Csv d:\contact2.csv 域名

  • 第三步: 運行命令刪除與該域名相關的用戶,組,聯繫人:

Get-MsolUser -DomainName msoffice.linkpc.net -all | remove-msoluser -force (用戶被刪除到已刪除用戶列表) email

Get-MsolUser -ReturnDeletedUsers -all | Remove-MsolUser -RemoveFromRecycleBin -force  (從已刪除的用戶列表裏面講用戶永久刪除) service

Get-msolgroup -all | where {$_.proxyaddresses -match "msoffice.linkpc.net" } | remove-msolgroup -force (強制刪除全部與該域名有關組) csv

Get-msolcontact -all | where {$_.emailaddress -match "msoffice.linkpc.net" } | remove-msolcontact -force (刪除與域名有關的聯繫人) 文件

Get-msolcontact -all | where {$_.ProxyAddresses -match "msoffice.linkpc.net" } | remove-msolcontact -force (刪除與域名有關的聯繫人) vi

  • 第四布:當確認好域名已經沒有郵件地址或者用戶和組在使用時,能夠直接將domain在office365管理中心刪除,該過程有些慢,或者使用命令

Remove-MsolDomain -DomainName msoffice.linkpc.net -force

相關文章
相關標籤/搜索