Author: Frank

Perform IIS reset on multiple servers at once. Displays status after reset. #Specify servers in an array variable, Make sure you change the where statement. [array]$servers = get-exchangeserver | where {$_.identity -like “esg*” -and $_.AdminDisplayVersion -match “version 15.0*”} #Step through each server in the array and perform an IISRESET #Also show IIS service status after […]
Scenario: When you are trying to remove an Exchange Database,  you receive the following error below. This mailbox database contains one or more mailboxes, mailbox plans, archive mailboxes, public folder mailboxes or arbitration mailboxes. To get a list of all mailboxes in this database, run the command Get-Mailbox -Database <Database ID>. To get a list […]
Scenario:  When you attempt to run Get-MailboxDatabase -includePreExchange2013, you get the following error: The Exchange server for the database object ‘DB11’ wasn’t found in Active directory Domain Services. The object may be corrupted. You then discovered the mailbox server that used to host the database no longer exists in your organization and was forcibly removed via ADSIEdit. […]
Scenario:  When offboarding a mailbox, you receive the following error: “You cannot migrate mailbox  off of Office365 while the mailbox has a connected account enabled.” Solution: You will have to remove the subscription before offboarding the mailbox. First,  check the subscription to make sure its not anything that’s going to affect the user: get-subscription –mailbox […]
Scenario: After the installation of additional Exchange 2013 servers​, we noticed that Outlook Anywhere is broke in our Exchange 2010 environment. The Exchange 2013 environment and mailboxes are unaffected by the connection problems, but the Exchange 2010 mailboxes cannot use Outlook Anywhere. Ex2010 mailboxes have to make a connection directly to the CAS Array or connect […]
Scenario:  After introducing additional Exchange On-Premises servers, we noticed that Autodiscover stopped working for our Exchange Online Hybrid mailboxes that were on computers internal to the domain. Using the ‘Test E-mail AutoConfiguration’ feature in Outlook, it would fail after the SCP/DNS autodiscover lookup. Reason:  Outlook has an Autodiscover Redirect limit of 8-10 responses.  Being we had more than 10 servers in our Exchange […]
Scenario:  After mailbox categories have mysteriously disappeared, you want to verify that the categories are not hanging around in the backend of your mailbox.  The concern is that you re-add the categories and if they mysteriously show up, it would create a headache to clean it up. Solution: The categories that is used throughout the […]
Configure bulk Exchange 2013 servers for Unified Messaging and Unified Messaging Call Router Settings. Set the UMService and UMCallRouterSettings for the servers: Get-UMService |  where {$_.identity -like ‘MBXSVR*’} | Set-UMService -DialPlans dialplan1 -UMStartupMode “dual”Get-UMCallRouterSettings |  where {$_.identity -like ‘MBXSVR*’} | Set-UMCallRouterSettings -DialPlans dialplan1 -UMStartupMode “dual” Configure the Exchange Certificate for the UM and UMCallRouter srevices. […]
Archives