This behavior was controlled by the installation of Outlook and its associated patches for the earlier cmdlt import-mailbox Pre-SP1. Since the whole attraction of the New-MailboxImportRequest cmdlt in SP1 is the ability to remove Outlook installations from the process, how do we prevent the permissions from being imported and over writing what is already in a users mailbox? This *feature* is not documented anywhere in the cmdlts get-help or in any of the the TechNet articles on the MS site. So if we still have the same problem with the new New-MailboxImportRequest cmdlt how do we prevent this from happening again.
We have a script process that exports a custom holiday calendar and imports it into every users mailbox, this process exported the pst file correctly and imports the data correctly, but in the process it replaced the permissions on all the calendars with what was in the exported pst file, removed anyone that was in the permissions for the calendar and broke all the delegation on every calendar, which also had to be removed and re-added. Great work Microsoft, SP1 strikes again.
These are the commands we run to export and import:
New-MailboxExportRequest -Mailbox "holidays@domain.com" -IncludeFolders "#Calendar#" -Filepath "\\SERVER\c$\TaskScripts\holidays.pst"
New-MailboxImportRequest -Mailbox "$name" -FilePath "\\SERVER\c$\TaskScripts\holidays.pst" -Confirm:$False
I have tried variations on the switches and source and target folders all with the same result, the pst file and command over writes the calendar permissions and no documentation exists to explain why or how to prevent this behavior.
Sean M. Loftus