Outlook Data File Performance

Outlook Data File Performance If you have a large .pst or .ost file, you may experience application pauses while you perform typical operations in Outlook. These typical operations include reading email messages, moving email messages, and deleting email messages. The following list summarizes expected behavior based on the size of Read more…

Office 365 – Setting Default Calendar Permissions To Reviewer For All Users

Step 1: Connect to Exchange Online using PowerShell $Credential = Get-Credential$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirectionImport-PSSession $Session Step 2: Generate a list of all mailboxes $users = Get-Mailbox -Resultsize Unlimited Step 3: Set Default access to Reviewer for all User mailboxes foreach ($user in $users) {Write-Host Read more…