Update Mail Enabled public folders with space in the alias
function Update-MailPublicFolder(
[string] $inputstring=$(throw '$inputstring is required')
)
{
$pubfolder=Get-MailPublicFolder "$inputstring"
Set-MailPublicFolder $pubfolder.Name -Alias $pubfolder.WindowsEmailAddress.Local
Get-MailPublicFolder $pubfolder.Name
}
Get-MailPublicFolder | select alias, WindowsEmailAddress
Get-MailPublicFolder | where {$_.alias -ne $_.WindowsEmailAddress.Local} | select alias, WindowsEmailAddress
Recover deleted public folders Exchange 2010 with ExFolders- Open ExFolders on an exchange server
- Right click parent folder of the deleted public folder and click “Show deleted subfolders”
- Right click on the newly displayed deleted folder and select "Recover Folder"
Error adding "Send As" Permission to a public folderErrorAccess is denied
INSUFF_ACCESS_RIGHTS
insufficient access rights
Testing- Create a new public folder
- mail enable it
- test adding a user with send as permission
Solution- Open ADSI Edit
- Expand the Domain \ Microsoft Exchange System Objects
- right click on the object select properties
- Select security
- click advanced
- Select the owner tab
- change the owner to be the same as the owner of the test public folder you created.
|