导出Exchange online(世纪互联) 用户邮箱到PST 文件
作者:互联网
1.以管理员权限打开PowerShell:
Install-Module MsOnline
Import-Module MsOnline
$cred= Get-Credential
$uri= "https://partner.outlook.cn/PowerShell"
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri $uri -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession $Session -DisableNameChecking
2.授予管理员导出邮箱权限:
Add-MailboxPermission -User gan@nip.com.cn -Identity Admin@nipit.partner.onmschina.cn -Acce***ights FullAccess -InheritanceType All
标签:partner,MsOnline,Exchange,世纪互联,PSSession,online,Import,cn 来源: https://blog.51cto.com/ganzy/2927853