谁批量导出邮箱并将pst保存为first.lastname

时间:2017-10-25 17:56:47

标签: powershell exchange-server

尝试编写powershell命令以导出所有邮箱并将其另存为firstname.lastname.pst
我是powershell的新手,需要一些帮助来解决这个问题。这是一个例子,但是first.lastname不起作用,因为我确信我缺少了东西。

Get-Mailbox -ResultSize Unlimited | Foreach ($mailbox in $mailboxes) {

New-MailboxExportRequest -Mailbox $mailbox -FilePath \\server\share\$_.firstname.$_.LastName.pst }

1 个答案:

答案 0 :(得分:0)

我想要FirstName.LastName,因为将pst文件批量导入到使用这种命名格式的不同服务器会更容易。感谢Bacon Bits进行更正。

get-recipient -identity * |选择firstname,lastname,samaccountname | foreach {new-mailboxexportrequest -mailbox $ .SamAccountName -filepath \ server \ share $($ .firstname)。$($ _。lastname).pst | export-csv \ server \ share \ list.csv