One of our workers needs view access to his manager calendar from his iPhone.
i do not want to set the manager user&password in the worker's iPhone active sync account.
i thought on a powershell script that will run every 20 minutes that will copy all calendar meeting from date the scripts run until 1 month from the boss mailbox to the worker mailbox.
the worker do not have any meetings in his calendar.
i can use the script below but maybe there is more elegant way to do this without pst.
New-MailboxExportRequest -Mailbox sourcemailbox -FilePath \\server\share\share.pst -IncludeFolders "#Calendar#"
New-MailboxImportRequest -Mailbox destmailbox -FilePath \\server\share\share.pst -IncludeFolders "#Calendar#"
any suggestions?
*i have exchange 2010 sp3
Thank,
Aviv Hassidim