我还是 PowerShell 的新手。从 Office 365 导出所有 pst 文件时,我遇到了问题,
显示的错误: New-MailboxExportRequest:术语“New-MailboxExportRequest”未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。检查名称的拼写,或者如果包含路径,请验证路径是否正确并重试。
这里有我的 PowerShell 脚本
$credential = Get-Credential
Install-Module MSOnline
Connect-MsolService -Credential $credential
Get-MsolUser
$ServerPath="\\KK\Users\"
Get-MsolUser -All |Export-Csv $ServerPath"user.csv"
$Users = Import-Csv $ServerPath"user.csv"
foreach ($User in $Users)
{
Write-Host $User.DisplayName-ForegroundColor Cyan
$filename = $User.DislayName
New-MailboxExportRequest -Mailbox $User.DisplayName -FilePath $ServerPath+"$filename.pst"
# Get-MailboxExportRequestStatistics -Identity $User.DisplayName | Format-List
}
我正在使用 Windows Powershell ISE 并以管理员身份运行。