尝试编写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 }
答案 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