In an Office365 hybrid configuration, you may get the following error after the Sign in to Office 365 prompt in the EAC:
To resolve, you need to do just that:
The attached VBScript allows you to set an Out-of-Office reply for another user on an Exchange 2003. You'll need the required permissions on the Exchange server to set a user's out-of-office (either Mail Recipients or User Options Management roles).
I found the script in the comments section of this Technet blog article. Special thanks go to the author (Bill Prentice) for sharing.
This script is only for Exchange 2003. Starting from 2007, the Powershell cmdlet Set-MailboxAutoReplyConfiguration is available.
You can easily convert an Exchange mailbox from one type to another through the Exchange Management Shell.
Set-Mailbox -Identity user.name -Type Regular
There are four types you can use to convert to:
The Equipment and Room types are used for reservations of meeting rooms and equipment (DLP).
After deleting an unused mailbox database from Exchange 2013, you may see warnings appearing in the Application log (Event Log):
The Microsoft Exchange Mailbox Replication service was unable to process jobs in a mailbox database. Database: Missing database (GUID) Error: Database 'GUID' doesn't exist.
If removed very recently, wait for replication of AD throughout your domain, but the Mailbox Replication service will also cache the existence of the database. You can resolve this by simply restarting the Microsoft Exchange Mailbox Replication service (can be done during operation).
Since Exchange 2010 SP1, when giving users Full access to another mailbox, they automatically get that mailbox added to their Outlook (2007 and up). This feature is called mailbox auto-mapping, and has made life a little easier for us IT administrators. But sometimes, you do not want a mailbox to be auto-mapped in Outlook for a particular user.
This can be achieved by setting the access permission through Powershell, and including the parameter -AutoMapping:$false in the cmdlet.
Add-MailboxPermission "Shared Mailbox" -User <user> -AccessRights FullAccess -AutoMapping:$false
You can easily find quarantined mailboxes through Powershell:
Get-Mailbox | Get-MailboxStatistics | Where { $_.IsQuarantined -eq $True } | Select Name,Alias
More information about quarantined mailboxes: KB2603736.
Using EMS (Exchange Management Shell), you can quickly retrieve a list of mailboxes not using the default quotas:
Get-Mailbox | Where { $_.UseDatabaseQuotaDefaults -eq $False } | Select Name,UseDatabaseQuotaDefaults,ProhibitSendQuota
Open an EMS (Exchange Management Shell), and type these in, one by one:
Get-GlobalAddressList | update-GlobalAdressList Get-AddressList | update-AddressList Get-OfflineAddressBook | Update-OfflineAddressBook
Some users report having to restart the Exchange File Distribution service after running these PS cmdlets.
Wanted to install the latest BES Express (at the time of writing, this was 5.0.4) on a fresh Windows-server. Starting Setup.exe briefly shows the Blackberry splash-screen, then immediately crashes ("this program has stopped working...").
Apparently, RIM did some sloppy programming: changing the regional settings to English (US) or English (UK) resolves the issue.
A useful Technet article on sizing Exchange 2013:
« ‹ | November 2024 | › » | ||||
Sun | Mon | Tue | Wed | Thu | Fri | Sat |
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |