I thought that easy, when you have just 2 or 3 folders. How about 100 folder, it is still easy though if you know the script. Get-MailboxFolderStatistics Mailboxname | where{ $_.folderpath -eq “/Foldername”) ...
Recently i got into a situation where i had to streamline the permissions that are given to the shared mailbox. So i’ve decided to do that in the following ways 1. Create a Shared mailbox2. Create a group for the ...
Recently I’ve encountered a scenario to delete a particular message with a certain subject. Which is no big deal Export-Mailbox -TargetMailbox “To Mailbox to which you wanted to copy the mails” -TargetF...
Below are some tools which each exchange administrator has to know: MFCMAPI Telnet The Exchange Pre-Deployment Analyzer The Exchange Best Practices Analyzer The Mailflow Troubleshooter Remote Connectivity Analyzer Messag...
To find a UMUser who has a extensioni “xxxx” using powershell get-ummailbox | where { $_.Extensions -eq “xxxx” } and get-ummailbox | ForEach { If($_.Extensions -eq xxxx){$.DisplayName}} To find a ...