Comments on: PowerShell Tip: List Active Mailbox Database Copies for an Exchange Server Database Availability Group https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/ Practical Office 365 News, Tips, and Tutorials Wed, 09 Mar 2022 12:52:04 +0000 hourly 1 https://wordpress.org/?v=6.3.2 By: oluwaseun https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-237942 Wed, 09 Mar 2022 12:52:04 +0000 https://www.practical365.com/?p=7834#comment-237942 How do I get the command Get-MailboxDatabaseCopyStatus * | ft -auto to forward respond to my email

]]>
By: Lauren Titus https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-233605 Mon, 22 Feb 2021 22:10:21 +0000 https://www.practical365.com/?p=7834#comment-233605 Is there a way to determine how many databases are replicating the same information across too many databases? I don’t want to sound too technical but a lot of small details like replication time can interfere with name changes or old forms that get handled by too many people who don’t have a good view of where to retrieve old records.

]]>
By: Rustam https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-229887 Thu, 11 Jun 2020 08:51:06 +0000 https://www.practical365.com/?p=7834#comment-229887 Hi Paul,
I have exchange 2013

I don’t want to look at the properties of each account to see if they are using our first, Second or third database. Could you show me the command to list users in a specific database?

]]>
By: David https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-210930 Fri, 24 May 2019 17:26:56 +0000 https://www.practical365.com/?p=7834#comment-210930 In reply to Adam Ovary.

This will also work
Get-MailboxDatabaseCopyStatus -server SERVERNAME | Where {$_.ActivationPreference -eq 1} | select Name,Status,CopyQueueLength,ReplayQueueLength,ContentIndexState | ft

]]>
By: Abul https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-180742 Mon, 31 Dec 2018 01:59:17 +0000 https://www.practical365.com/?p=7834#comment-180742 In reply to Paul Cunningham.

-Active switch will also give you the Dismounted DB. Which is not good for Backup Software.

]]>
By: Ahmed https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-156711 Tue, 26 Dec 2017 13:19:41 +0000 https://www.practical365.com/?p=7834#comment-156711 Hi Paul,

we have exchange 2013 CU 10 with windows Server 2012. Since yesterday one of our exchange 2013 DAG member shows unavailable network in its DAG network details. Both MAPI and REPL networks are shown unavailable.

]]>
By: Paul Cunningham https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-119849 Mon, 24 Jul 2017 05:49:08 +0000 https://www.practical365.com/?p=7834#comment-119849 In reply to pooja.

It’s a conditional operator that means “not equal”.

So the command should return databases that do not have a status of “Mounted”.

]]>
By: pooja https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-119314 Sun, 23 Jul 2017 07:04:57 +0000 https://www.practical365.com/?p=7834#comment-119314 $_.Status -ne ‘Mounted’ can you guide me what does -ne means here in this command

]]>
By: Andys https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-94750 Tue, 06 Jun 2017 09:35:02 +0000 https://www.practical365.com/?p=7834#comment-94750 can i do email forwarding on Distribution group to user’s mailbox?

]]>
By: Paul Cunningham https://practical365.com/powershell-tip-list-active-mailbox-database-copies-exchange-server-database-availability-group/#comment-21531 Wed, 27 Jan 2016 02:52:20 +0000 https://www.practical365.com/?p=7834#comment-21531 In reply to Javed.

No need for that when you can just use the -Active switch.

]]>