Exchange命令行管理程序 - Exchange 2010 - 使用DateRange导出到PST,忽略过滤

问题描述 投票:0回答:1

我稍微详细说明一下这个标题。

我目前正在创建一个脚本,将Exchange 2010上的邮箱导出到PST,只发送来自特定日期范围的电子邮件。

但是,似乎忽略了过滤器并将所有37gb导出到PST。

我正在创建脚本以防止将来必须这样做。我将发布下面的脚本,因为它与变量等问题都有关。

# / Sets to US Date Values \ #

[System.Reflection.Assembly]::LoadWithPartialName("System.Threading")
[System.Reflection.Assembly]::LoadWithPartialName("System.Globalization")
[System.Threading.Thread]::CurrentThread.CurrentCulture = [System.Globalization.CultureInfo]::CreateSpecificCulture("en-us")

# / This Loads The Assemblies Required for Data Input for the future Parameters \ #

[System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms") | Out-Null
[System.Reflection.Assembly]::LoadWithPartialName("System.Drawing") | Out-Null
[System.Windows.Forms.Application]::EnableVisualStyles() | Out-Null

# / This Loads The Pop-up Data Input Windows For Creating the Parameters \ #

Add-Type -AssemblyName Microsoft.VisualBasic

# / Parameter Creation Using Nice GUI Pop-Up Windows \ #

$User = [Microsoft.VisualBasic.Interaction]::InputBox('What Is The Email Account?', 'Email Address', "[email protected]")
$StartDateData = [Microsoft.VisualBasic.Interaction]::InputBox('What Is The Start Date (US Date Format)', 'Start Date', "12/25/1900")
$EndDateData = [Microsoft.VisualBasic.Interaction]::InputBox('What Is The End Date (US Date Format)', 'End Date', "12/25/1900")
$Path = [Microsoft.VisualBasic.Interaction]::InputBox('Specify Where You Want The PST to Be Saved (Full UNC Path WITH Trailing Slash)', 'Path', "C:\Users\%USERPROFILE%\Desktop\")

# / Export Mailbox \ #
cls
Write-Host ''
Write-Host ''
Write-Host ''
Write-Host ''
Write-Host ''
Write-Host ''
Write-Host 'Is this Data Correct?'
Write-Host ''
Write-Host ''
Write-Host $User 
Write-host $StartDateData
Write-host $EndDateData
write-host $Path
Write-Host ''
Write-Host ''
Write-Host ''
Write-Host "Do You Want To Continue? (Y/N)"
$response = Read-Host
if ( $response -ne "Y" ) { 
exit
}

cls

# / Sets The Path Parameter \ #
$PSTPath = $Path + $User + ".pst"

# / Sets The Date Parameter \ #

$StartDate = "'" + $StartDateData + "'"
$EndDate = "'" + $EndDateData + "'"

# Use This if the Below Doesn't Work - Export-Mailbox -Identity $User -StartDate $StartDate -EndDate $EndDate -PstFolderPath $PSTPath

# gt = Greater-Than
# ge = Greater-Than-Or-Equal-To
# lt = Less-Than
# le = Less-Than-Or-Equal-To

$Request = New-MailboxExportRequest -Mailbox $User -ContentFilter {(Received -ge $StartDate) -and (Received -le $EndDate)} -FilePath $PSTPath

$Status = ( Get-MailboxExportRequestStatistics -Identity $Request ).Status.ToString().Trim()

while( $Status -ne 'Completed' ){
    Start-Sleep 10

    $Status = ( Get-MailboxExportRequestStatistics -Identity $Request ).Status.ToString().Trim()

    Write-Verbose "Current Export Status: $Status" -Verbose
    }a

Write-Verbose "$Mailbox exported" -Verbose

对批量道歉,我不能亲自看到错误。

powershell exchange-server-2010 exchange-management-shell
1个回答
0
投票

经过大量的游戏后,我自己完成了修复。

不得不把过滤器扔进它自己的参数,就像这样

$filter = "(Received -ge" + " " + $StartDate + ") -and (Received -le" + " " + $EndDate + ")"

然后将其输入命令

$Request = New-MailboxExportRequest -ContentFilter $filter -Mailbox $User -Name $ReqName -FilePath $PSTPath

这使它得以进步

© www.soinside.com 2019 - 2024. All rights reserved.