Since I released the Test-ExchangeServerHealth.ps1 script one of the most common feature requests has been to add health checks for Database Availability Groups.
So I am pleased to announce the availability of Get-DAGHealth.ps1, a Database Availability Group health check PowerShell script.
Note that the functionality of this script has been merged with the Test-ExchangeServerHealth.ps1 script to provide a single, daily health check script that you can use for your Exchange environments. If you are looking for more than just DAG health I recommend trying Test-ExchangeServerHealth.ps1 instead.
Please read the usage instructions in below or in the script help info.
This script is available on the TechNet Script Gallery or Github. Comments are welcome below. If you find a bug please consider raising it as an issue on Github.
Running Get-DAGHealth.ps1
The script is written and tested for Exchange Server 2010 and Exchange Server 2013 CU1.
The script requires the Exchange Management Tools to run. You can execute it from the Exchange Management Shell, or a regular PowerShell session and it will add the Exchange snapin if not already loaded.
You can also execute it as a scheduled task. I use the follow settings in my scheduled task to make it work:
- Run whether user is logged on or not
- Run with highest privileges
- Action:
- Start a program: powershell.exe
- Arguments: -command “c:\scripts\daghealth\get-daghealth.ps1 -Detailed -SendEmail”
- You may need to modify your script execution policy to run this script as it is not signed
- You may need to open the Properties of the downloaded file and “unblock” it before it will run
Use Get-Help to see more usage details and examples.
PS C:\Scripts\DAGHealth\> get-help .\Get-DAGHealth.ps1 -Examples NAME C:\Scripts\DAGHealth\Get-DAGHealth.ps1 SYNOPSIS Get-DAGHealth.ps1 - Exchange Server 2010 Database Availability Group Health Check Script. -------------------------- EXAMPLE 1 -------------------------- C:\PS>.\Get-DAGHealth.ps1 Checks all DAGs in the organization and outputs a health summary to the PowerShell window. -------------------------- EXAMPLE 2 -------------------------- C:\PS>.\Get-DAGHealth.ps1 -Detailed Checks all DAGs in the organization and outputs a detailed health report to the PowerShell window. Due to the amount of detail the full report may get cut off in your window. I recommend detailed reports be output to HTML file or email instead. -------------------------- EXAMPLE 3 -------------------------- C:\PS>.\Get-DAGHealth.ps1 -Detailed -SendEmail Checks all DAGs in the organization and outputs a detailed health report via email using the SMTP settings you configure in the script.
I generally recommend using the HTML file or email output to get the best results. The HTML output gives a color-coded health report to bring to your attention any potential health issues such as databases not active on their first preference server, unhealthy copies or queues, unhealthy content indexes, and other things that can sometimes go unnoticed with DAGs.
The report is indicative only. You should investigate and validate any issues that it flags to determine what if any action is required to resolve them.
This script is available on the TechNet Script Gallery or Github. Comments are welcome below. If you find a bug please consider raising it as an issue on Github.
Change Log:
- V1.0 – 14/02/2013 – Initial release
- V1.1 – 24/04/2013 – Bug fixes, Exchange 2013 compatibility
Feedback and bug reports welcome in the comments below. If you like this script please feel free to share this article with your friends and colleagues on Twitter, Facebook, LinkedIn, Google+ etc. You might also be interested in some of my other PowerShell scripts.
[adrotate banner=”48″]
Pingback: Computer Peripherals
Love the script but I updated to include AutoSuspended lag copies in Exchange 2016 so they show up as green and happy.
The Test-ExchangeServerHealth.ps1 script should also have that update, and I generally recommend using that one instead. I don’t maintain this DAG health script any more, after it was merged with Test-ExchangeServerHealth.ps1.
I’m facing with the issue when I trying to run this script.
It was shown this error:
Warning: \Location of this script\ignorelist.txt could not be found. No servers, DAGs or databases will be ignored.
—— Finishing
Done.
I already stick unblock on those properties.
Waow thanks Paul !
we’ve got a global exchange environment, but our region is restricted to a small number of servers+dags.
currently the script is throwing connection errors for other region servers due to permissions errors for those servers.
Is there any way to mod script to _only_ query specific servers/dags?
we’ve used ignorelist.txt, but that doesn’t stop connection attempts to other database servers
Basically anywhere in the script that a Get-* cmdlet is running, like Get-DatabaseAvailabilityGroup, you can mod that line to suit your needs.
$smtpsettings = @{
To = “40802478@qq.com”
From = “wyh33621999@126.com”
Subject = “$reportemailsubject – $now”
SmtpServer = “smtp.126.com”
}
hi
first of all i must say that its amazing,i had a question, when all my node are up in my cluster i run this script but i got FAILED in Database Redundancy and Database Availability
how ever my dag is working well and databases switch over on my servers
what’s this FAILED in my email?
Paul,
Thanks for the great script. Just made my life a lot easier.
I made a minor code adjustment so I can have multiple To recipients in the settings.xml:
$smtpsettings = @{
To = [string[]]($ConfigFile.Settings.EmailSettings.MailTo -split “,”)
From = $ConfigFile.Settings.EmailSettings.MailFrom
SmtpServer = $ConfigFile.Settings.EmailSettings.SMTPServer
Subject = “$($ConfigFile.Settings.EmailSettings.Subject) – $now”
}
This allows for one or more recipients separated by a comma.
How Can I add a section to show Dag is balanced or not, I can see it Visually but can I add a tab to see if all the DAG are balanced or not.
Thanks,
Ripu Daman
Hi Paul…
Great script! But, can’t get the ignorelist to work….what is the syntax for the ignorelist.txt?
Thanks
JP
This script has worked like a charm for me for near 2 years in Exchange 2010. We are now deploying 2016, the script still works on our 2010 servers, but not on 2016, error is:
“Could not load file or assembly ‘Microsoft.Exchange.Data, Version=14.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35’ or one of its dependencies. The system cannot find the file specified.”
Any ideas?
Newbie here … can you give me instructions on how to set this up to run for the first time?
Great script Paul,
I have mix Ex2010/Ex2016 with 2 DAGs, when I ran the script on a Server 2008-R2 with Exchange 2010 powershell, the report does not shows the “Health Summary” and “Health Detail” for the EX2016’s DAG, it shows “Member Health”.
The script failed when I ran it with Exchange 2016 powershell.
Thanks
Hey Paul,
This worked great!!! and i mean i automated it and no issues.
what tips can you give me if i wanted to add drive space and stats on the report?
Hi The script not working with me and i receive the below message
WARNING: The file C:Scriptsignorelist.txt could not be found. No servers, DAGs or databases will be ignored.
—— Finishing
Sending email.
Send-MailMessage : The specified string is not in the form required for an e-mail address.
At C:ScriptsGet-DAGHealth.ps1:1092 char:20
+ Send-MailMessage <<<< @smtpsettings -Body $htmlreport -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF
8)
+ CategoryInfo : InvalidType: (:) [Send-MailMessage], FormatException
+ FullyQualifiedErrorId : FormatException,Microsoft.PowerShell.Commands.SendMailMessage
Send-MailMessage : A recipient must be specified.
At C:ScriptsGet-DAGHealth.ps1:1092 char:20
+ Send-MailMessage <<<< @smtpsettings -Body $htmlreport -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF
8)
+ CategoryInfo : InvalidOperation: (System.Net.Mail.SmtpClient:SmtpClient) [Send-MailMessage], InvalidOpe
rationException
+ FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.SendMailMessage
Done.
I have used the ignorelist.txt before for server names but is there a way to ignore a certain database copies like “database1server2” in the DAG Health Details or is the ignore only the database name which will ignore it for everything?
Currently it will ignore an entire database name.
What’s your scenario/requirement here?
One of the members was going to be down for a couple of days so it was put into DAG maintenance mode and I just wanted to temporarily clean up the report while it was down, however that DAG member and its copies will be decommissioned tomorrow so its fine. Thank you for the reply and keep up the great work, your articles and replies are very helpful
This is a great script. I prefer it over the Test-ExchangeServerHealth because of the nice HTML Report.
However I cannot get it to send emails to more than one person. I have tried separating the “TO” email addresses such as “joe@domain.org”, “Jane@domain.com” but no email ever arrives. I also tried a distribution list with the same result.
The Quorum Group and File Share Quorum show as “FAILED” and highlighted in yellow for both of the two servers I have. What does that mean?
Thanks Paul!!!
The Test-ExchangeServerHealth.ps1 script has a HTML report as well.
For multiple recipients I recommend sending the report to a distribution group.
For the failed items, you’ll need to investigate your DAG/cluster config further.
Excellent Script! Thank you Paul
Hi Paul,
I am implemented this script in my origination and it’s working without any issues through exchange shell and also getting email notification as well. However I have created scheduled task for this and run the script but not getting email notification.
Can you help me on this…
Hi Paul,
After make changes in script it’s working fine.
I want to send this email report multiple users which strings I need to add in the script. Getting below error.
Send-MailMessage : The specified string is not in the form required for an e-mail address.
At E:Program FilesMicrosoftExchange ServerV14ScriptsGet-DAG Health.ps1:1076 char:20
+ Send-MailMessage <<<< @smtpsettings -Body $htmlreport -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF
8)
+ CategoryInfo : InvalidType: (:) [Send-MailMessage], FormatException
+ FullyQualifiedErrorId : FormatException,Microsoft.PowerShell.Commands.SendMailMessage
Send-MailMessage : A recipient must be specified.
At E:Program FilesMicrosoftExchange ServerV14ScriptsGet-DAG Health.ps1:1076 char:20
+ Send-MailMessage <<<< @smtpsettings -Body $htmlreport -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF
8)
+ CategoryInfo : InvalidOperation: (System.Net.Mail.SmtpClient:SmtpClient) [Send-MailMessage], InvalidOpe
rationException
+ FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.SendMailMessage
Can you help on this.
If you want to send to multiple recipients I recommend you send to a distribution group.
Hi Team,
I want to implement this script on my organization.
The script is working by using exchange shell with out any issues. The report not getting through email the required SMTP changes has been done and also I tracked the message report email not trigger to our exchange servers.
Can someone help me on this.
So the script is great and I set it up to run as a scheduled task. Now the boss says that he only wants to receive an email if the DAG is not healthy or has failed over to the secondary site. Is that possible at all, or would that most likely come down to a paid for 3rd party solution?
Test-ExchangeServerHealth.ps1, which is generally a better script, has a switch you can use to only send the email if alert conditions were found.
https://www.practical365.com/powershell-script-health-check-report-exchange-2010/
What happens when your company is using Gmail to receive the reports? For me in Outlook it looks fine with everything showing as green, but unfortunately Gmail removes all the colors which makes it harder for our NOC to easily identify an issue.
HTML email renders differently in different email clients, webmail services, mobile devices, etc etc. It’s a big deal for marketers etc who want their emails designs to work for as many people as possible, and they pay designers and use expensive testing tools to achieve that.
I’ve made a simple HTML email that works in Outlook, which is as far as I’ve gotten with it right now sorry 🙂
No worries. I use Outlook, so it looks good for me. Even on my iPhone since I am using the Outlook app. I’ll just have to remind them this is another reason why we should be using Exchange instead of Gmail. 🙂
I am also getting an empty screen…it just states …………finishing and then done on the next line with no output. Running two Exchange 2013 CU7 servers in a DAG. Piping output to html file made no difference, just an empty html file.
Try running with the -Log switch and see if the log file has any clues. You can also use -Verbose.
Same error here, Exchange 2013 CU9.
Log file only show these lines…
08/19/2016 13:05:58 =====================================
08/19/2016 13:05:58 Exchange Server DAG Health Check
08/19/2016 13:05:58 08/19/2016 13:05:55
08/19/2016 13:05:58 =====================================
Hello there, looks like very extensive and great script.
However when I run the script in mixed Exchange 2013 and Exchange 2010 environment I get empty report.
Even in powershell screen, I see finished but no result in the screen nor in the folder itself.
With kind regards.
This is a great script. I have one issue that I am not sure how to resolve. Any suggestions will be greatly appreciated. I receive the following error most times when executing the Test-ExchangeServerHealth.ps1 script
WARNING: Windows Failover Clustering encountered a transient error. Trying the operation again may be successful. Error: ‘IsNodeClustered’.
In the report there is a field named “Preference”, but I do not what it means…
Do you have any link where explain it? Or someone knows about it
Grettings from Mexico
Preference is “Activation Preference”.
Some related reading:
https://www.practical365.com/powershell-scripts-for-balancing-database-availability-groups/
https://www.practical365.com/database-failover-wrong-server/
Hi Paul
Ah I see. Since Get-DAGHealth.ps1 seems to be integrated in Test-ExchangeServerHealth.ps1, I want to run: Test-ExchangeServerHealth.ps1.
Thanks
In Test-ExchangeServerHealth.ps1 the -ReportMode parameter is a switch. No need to add $true after it.
Hi Paul
This seems to be very nice script. But I am not able to get a html file.
If I change the ReportMode parameter to $true in line 114 as outlined in line 20 then I always get asked for the ReportMode parameter. There I can enter what ever I want. I only get the error:
Cannot process argument transformation on parameter ‘ReportMode’. Cannot
convert value “System.String” to type “System.Management.Automation.SwitchParameter”. Boolean parameters accept only
Boolean values and numbers, such as $True, $False, 1 or 0.
I run the script on an Exchange 2013 server with the roles: MBX and CAS.
Do you have an idea what to do?
Kind regards
Matthias
Are you using the latest version? It doesn’t have a -ReportMode switch at all.
When I run Test-ExchangeServerHealth.ps1 it too says that the mail flow test failed. When I run Test-MailFlow it just times out and Fails. All appears to be working fine? What to do next??
Paul or anybody,
Suggestions on what or how to test further??
When I run this test, everything passes except the “Mail Flow Test” which Takes a long time and fails.
What troubleshooting should I do next?
Any help is appreciated!
Roy
You can try running the Test-Mailflow tests yourself manually. But really this isn’t being maintained and you should look to use Test-ExchangeServerHealth.ps1 instead.
Had a problem running this script from a scheduled job. After troubleshooting using “Start-Transcript” I noticed it was not able to automatically connect to the Exchange servers:
VERBOSE: Connecting to *******
An internal error occurred.
+ CategoryInfo : InvalidArgument: (http://*******….tVer=14.3.123.4:Uri) [], PSInvalidOperationException
+ FullyQualifiedErrorId : CreateRemoteRunspaceFailed
(this error did not occur when running the script manual)
I commented out line 280:
# Connect-ExchangeServer -auto -AllowClobber
And now it works like a charm!
Great script! Thanks!
I signed up as an insider and logged in, but cannot locate where I download this script
Thanks Paul, this looks very useful.
So far though, nothing. I run the script and…. nothing. No errors.
I’ve modified the smtp variables, attempted to run to a file, to screen… nothing. Are there other variables to be changed besides the smtp settings?
Without modifying anything if you just run the script it should find and check any DAGs in your org, and output the results to the screen. Start with that.
This script is probably a bit out of date anyway. I recommend looking at my Test-ExchangeServerHealth.ps1 script which is more comprehensive.
Hi Paul,
Big fan of your work. Your scripts have made my life a lot easier. I am attempting to run the DAG Health check script but am getting the following error:
WARNING: Unable to get Primary Active Manager information due to an Active Manager call failure. Error: An Active Manager operation failed. Error
Operation failed with message: Error 0x6d1 (The procedure number is out of range) from cli_AmGetDeferredRecoveryEntries.
We have our domain with several regions. It’s possibly trying to read a DAG I don’t have access to? Can I get the script just to read the DAG’s I have access to? Like: Set-adserversettings -recipientviewroot usa.abc.com? Where would I insert that in?
Sounds possible. On line 103 of the script you can customize the Get-DatabaseAvailabilityGroup command to grab just the DAGs you want or exclude others.
I haven’t developed this script much further after I rolled it into the Test-ExchangeServerHealth.ps1 script. That script has an ignorelist.txt that you can use to exclude specific DAG names if you need to.
Hi Paul,
The Ignore list in combination with the server list worked perfectly. Thanks again.
Paul,
Is there a way we can Skip “DBLogReplayKeepingUp” in test-replicationhealth cmdlet?
Please help
We have lagged copy setup in Exchange 2013 DAG.
Pingback: How to Install and Configure Exchange 2013 with PowerShell - Exchange and SCOM WordPress Site
Hi, I am looking for a script to automate the client connections (MAPI, RPC/HTTPS, ActiveSync).
In simple words i am looking for a script to do TestConnectivy.microsoft.com. Could you please help. Thanks.
Hi Paul,
How would you output the results to HTML. Can you please provide the syntax?
Regards
Kush
Hi,
Today we’ve updated Exchange 2013 with CU6.
If i run the script i get Cluster Network “*FAILED*”.
The verbose output:
[PS] C:Program FilesMicrosoftExchange ServerV15Scripts>C:Get-DAGHealth.ps1 -Detailed -SendEmail -Verbose -Debug
VERBOSE: Retrieving Database Availability Groups
VERBOSE: 1 DAGs found
VERBOSE: —- Processing DAG DAG01
VERBOSE: 2 DAG members found
VERBOSE: 3 DAG databases found
VERBOSE: —- Processing database DB01
VERBOSE: DB01 has 2 copies
VERBOSE: Database Copy: DB01SCL-RJE-ML-0001
VERBOSE: Server: SCL-RJE-ML-0001
VERBOSE: Activation Preference: 1
VERBOSE: Status: Mounted
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
VERBOSE: Content Index: Healthy
VERBOSE: Replay lag is False
VERBOSE: Truncation lag is False
VERBOSE: Database Copy: DB01SCL-RJE-ML-0002
VERBOSE: Server: SCL-RJE-ML-0002
VERBOSE: Activation Preference: 2
VERBOSE: Status: Healthy
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
VERBOSE: Content Index: Healthy
VERBOSE: Replay lag is False
VERBOSE: Truncation lag is False
VERBOSE: —- Processing database DB02
VERBOSE: DB02 has 2 copies
VERBOSE: Database Copy: DB02SCL-RJE-ML-0002
VERBOSE: Server: SCL-RJE-ML-0002
VERBOSE: Activation Preference: 1
VERBOSE: Status: Mounted
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
VERBOSE: Content Index: Healthy
VERBOSE: Replay lag is False
VERBOSE: Truncation lag is False
VERBOSE: Database Copy: DB02SCL-RJE-ML-0001
VERBOSE: Server: SCL-RJE-ML-0001
VERBOSE: Activation Preference: 2
VERBOSE: Status: Healthy
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
VERBOSE: Content Index: Healthy
VERBOSE: Replay lag is False
VERBOSE: Truncation lag is False
VERBOSE: —- Processing database SPAM
VERBOSE: SPAM has 2 copies
VERBOSE: Database Copy: SPAMSCL-RJE-ML-0001
VERBOSE: Server: SCL-RJE-ML-0001
VERBOSE: Activation Preference: 1
VERBOSE: Status: Mounted
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
VERBOSE: Content Index: Healthy
VERBOSE: Replay lag is False
VERBOSE: Truncation lag is False
VERBOSE: Database Copy: SPAMSCL-RJE-ML-0002
VERBOSE: Server: SCL-RJE-ML-0002
VERBOSE: Activation Preference: 2
VERBOSE: Status: Healthy
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
VERBOSE: Content Index: Healthy
VERBOSE: Replay lag is False
VERBOSE: Truncation lag is False
VERBOSE: —- Checking replication health for SCL-RJE-ML-0001
VERBOSE: ClusterService Passed
VERBOSE: ReplayService Passed
VERBOSE: ActiveManager Passed
VERBOSE: TasksRpcListener Passed
VERBOSE: TcpListener Passed
VERBOSE: ServerLocatorService Passed
VERBOSE: DagMembersUp Passed
VERBOSE: MonitoringService Passed
VERBOSE: ClusterNetwork *FAILED*
VERBOSE: QuorumGroup Passed
VERBOSE: FileShareQuorum Passed
VERBOSE: DatabaseRedundancy Passed
VERBOSE: DatabaseAvailability Passed
VERBOSE: DBCopySuspended Passed
VERBOSE: DBCopyFailed Passed
VERBOSE: DBInitializing Passed
VERBOSE: DBDisconnected Passed
VERBOSE: DBLogCopyKeepingUp Passed
VERBOSE: DBLogReplayKeepingUp Passed
VERBOSE: —- Checking replication health for SCL-RJE-ML-0002
VERBOSE: ClusterService Passed
VERBOSE: ReplayService Passed
VERBOSE: ActiveManager Passed
VERBOSE: TasksRpcListener Passed
VERBOSE: TcpListener Passed
VERBOSE: ServerLocatorService Passed
VERBOSE: DagMembersUp Passed
VERBOSE: MonitoringService Passed
VERBOSE: ClusterNetwork *FAILED*
VERBOSE: QuorumGroup Passed
VERBOSE: FileShareQuorum Passed
VERBOSE: DatabaseRedundancy Passed
VERBOSE: DatabaseAvailability Passed
VERBOSE: DBCopySuspended Passed
VERBOSE: DBCopyFailed Passed
VERBOSE: DBInitializing Passed
VERBOSE: DBDisconnected Passed
VERBOSE: DBLogCopyKeepingUp Passed
VERBOSE: DBLogReplayKeepingUp Passed
—- Database Copy Health Summary —-
Database Mounted on Preference Total Copie Healthy Cop Unhealthy C Healthy Que Unhealthy Q Lagged Queu Healthy Ind
s ies opies ues ueues es exes
——– ———- ———- ———– ———– ———– ———– ———– ———– ———–
DB01 SCL-RJE-… 1 2 2 0 2 0 0 2
DB02 SCL-RJE-… 1 2 2 0 2 0 0 2
SPAM SCL-RJE-… 1 2 2 0 2 0 0 2
—- Database Copy Health Details —-
Database Na Database Co Mailbox Ser Activation Status Copy Queue Replay Queu Replay Lagg Truncation Content Ind
me py ver Preference e ed Lagged ex
———– ———– ———– ———– —— ———- ———– ———– ———– ———–
DB01 DB01SCL… SCL-RJE-… 1 Mounted 0 0 False False Healthy
DB01 DB01SCL… SCL-RJE-… 2 Healthy 0 0 False False Healthy
DB02 DB02SCL… SCL-RJE-… 1 Mounted 0 0 False False Healthy
DB02 DB02SCL… SCL-RJE-… 2 Healthy 0 0 False False Healthy
SPAM SPAMSCL… SCL-RJE-… 1 Mounted 0 0 False False Healthy
SPAM SPAMSCL… SCL-RJE-… 2 Healthy 0 0 False False Healthy
—- Server Test-Replication Report —-
Server ClusterServ ReplayServi ActiveManag TasksRpcLis TcpListener ServerLocat DagMembersU MonitoringS ClusterNetw
ice ce er tener orService p ervice ork
—— ———– ———– ———– ———– ———– ———– ———– ———– ———–
SCL-RJE-… Passed Passed Passed Passed Passed Passed Passed Passed *FAILED*
SCL-RJE-… Passed Passed Passed Passed Passed Passed Passed Passed *FAILED*
Do you have any idea why this reports failed?
Thanks in advance,
Marcel
Run Test-Replication health and look at the details there. You might need to do “test-replicationhealth | fl” to see more info.
If there’s no help there look in the event logs for more clues.
The script is just reporting what it sees, it can’t troubleshoot for you.
Hi Paul,
Thanks for your quick reply!
I’ve been able to fix the “misconfigured” issue it had to do with IPv6.
All is ok now and I can confirm that both this and the Exchange Server Health Check Report work fine with CU6.
Have a nice weekend.
Marcel
Hi Paul
I running Scipt on Coexist exchange 2010 and exchange 2013.
I had 2 DAG (1 For Exchange 2010 and 1 Exchange 2013). Exchange 2010 was OK, but Exchange 2013 not Run
It not get healthy DAG exchange 2013 with Error
Could not load file or assembly ‘Microsoft.Exchange.Data, Version=14.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35’ or one of its dependencies. The
system cannot find the file specified.
+ CategoryInfo : NotSpecified: (:) [Get-DatabaseAvailabilityGroup], FileNotFoundException
+ FullyQualifiedErrorId : [Server=XXX2013,RequestId=faca3730-5443-4548-90e8-bddf46d82352,TimeStamp=10/27/2014 11:48:46 AM] [FailureCategory=Cmdlet-F
ileNotFoundException] AF360ECA,Microsoft.Exchange.Management.SystemConfigurationTasks.GetDatabaseAvailabilityGroup
+ PSComputerName : XXX2013.domain.com
Please can You help me fix it?
I’m getting all the info except for server column on the last section for test-replication… any idea? lastest Exchange 2010 SP & Rollup.
Hi, can you try with the latest version of Test-ExchangeServerHealth.ps1 instead? That has some bug fixes that haven’t been added back to Get-DAGHealth.ps1.
i can’t recive the email report
What have you tried so far to get it working?
Gone back to the author of the script with a lot of detail on what the issue is and didn’t at all just say something very general that is impossible to troubleshoot.
🙂
i run it on my on premis cas and it run perfectly but it doesn’t send me email although i config the mail on the “Modify these Email Settings”
From the server that you’re running the script on try telnet to the SMTP server you’re using in the script settings and test SMTP that way.
Here’s how to do that:
https://www.practical365.com/how-to-send-email-via-telnet/
Pingback: hogan elective
Pingback: hogan donne 2013
Pingback: natural acne treatment
Paul,
Excellent script and very quick to get report in friendly viewable format
In Exchange 2013 during the issue When I run the Test-replication health on individual server it shows the failure in DatabaseRedundancy & ‘DatabaseAvailability .
Results on DAG Servers:
DatabaseRedundancy *FAILED* There were database redundancy check failures for database ‘DatabaseAvailability *FAILED* There were database availability check failures for database
But when I run the this script the failure details are not captured i.e the fields DatabaseRedundancy &DatabaseAvailability are not available in the HTML report.
Can you please help here?
Pingback: shoes
Pingback: LKQ auto Parts
Pingback: memory loss and ms
Pingback: how is ms diagnosed
Pingback: internet marketing services
Very Often I see the reports show “File Share Quorum” as “*FAILED*
Is it something that It can not fetch into report?
But then I manually run it after sometime and get all as passed.
Pingback: #MSExchange 2013 Health Check #Powershell Scripts | Microsoft Exchange for IT Professionals
Pingback: Exchange 2013 PowerShell Scripts – A Practical Guide | Just A UC Guy
Hi Paul,
This is just great..
I have two DAG in my exchange but I want a summary report of only one DAG.
How can I do that? Can You guide me to changes required? I am a powershell beginner.
On line 103 of the script change the line:
$dags = @(Get-DatabaseAvailabilityGroup -Status)
to read
$dags = @(Get-DatabaseAvailabilityGroup -Status YOURDAGNAMEHERE)
That’s Great.
Still it tries to connect to other DAG Servers and displays error as ” unable to connect to Information Store service on Server1.*****.com”.
Hi,
is this download no longer available?
I’m logged in, but unfortunately I’m not able to download this script. There is now download button or sth. else…
Download links are in the members area at http://inside.exchangeserverpro.com/members
Great Script thank-you Paul!!!!
Just wanted to quickly share, I had the same issue a few had that on a SP1 and above 2010 Exchange server the database preference column had stopped working. To fix I needed to change the $mailboxserver attribute to return a title-case value rather than upper case as this is the format the “ActivationPreference” section now returned.
Here was my hack to fix (not a script-guy so may be better ways to do it sorry):
changed:
$mailboxserver = $dbcopy.MailboxServer
Write-Verbose “Server: $mailboxserver”
to:
$mailboxserverupper = $dbcopy.MailboxServer
$TextInfo = (Get-Culture).TextInfo
$mailboxserver = $TextInfo.ToTitleCase($mailboxserverupper.ToLower())
Write-Verbose “Server: $mailboxserver”
All working properly now, thanks again for your hard work!
Cheers
Ben
Great script!
Very useful, I use it to monitor a DAG that expands across 3 sites.
I do have a quick question. I noticed that the script reports that one of the Exchange servers “DB Log replay keeping up” Failed.
Now, I have setup database copies to that server to be lagged by 12 hours and I’m wondering if that is the reason for the “Failed” report or if it is an issue I need to look into it.
Thank you
I am using the script and it works until I get to the send email switch. I am running the command as follows: .Get-DAGHealth.ps1 -Detailed -SendEmail
When it gets to the sending email part I get the following error:
Send-MailMessage : Service not available, closing transmission channel. The server response was: 4.3.2 Service not active
Any ideas?? Otherwise, an AWESOME script!!
I’d say you’re pointing at a server that is either not running an SMTP service or is rejecting the connection. Not really a script issue, just something you need to troubleshoot.
https://www.practical365.com/how-to-send-email-via-telnet/
while trying to run your script i realized it is going to try and pull all DAGS in my forest which for my group that is around 50 or so of them, i only care about the ones i control, is there anyway to tell this script to look at one specific DAG or a group of dags that have the same general name?
Modify the script line where it fetches the DAGs (using Get-DatabaseAvailabilityGroup).
Or run Test-ExchangeServerHealth.ps1 instead which has an ignorelist.txt file you can use to exclude servers, databases, or DAGs.
Pingback: basement renovations ideas
Hi
Great script!!
However I updated my servers to SP1 and now it doesn’t report like before.
Preference is blank under “Database Availability Group DAG-SPL-01 Health Summary”. Activation Preference is blank under “Database Availability Group DAG-SPL-01 Health Details”. and not server names under “Database Availability Group DAG-SPL-01 Member Health”
Known issue?
Best regards
Robert
I’ll test it out when I have an SP1 DAG available again in the lab.
Hi
We had one Archive-server left for upgrading to SP1 that I forgot. So I upgraded it tonight and now this morning the reports looks good again… so it seems to have resolved itself when all servers hade SP1… if that is logical?!
Thank you!
Regards
Robert
Pingback: Why Did My Database Failover to the Wrong Server?
Pingback: Ken Anderson ubs
Pingback: lacartes
Pingback: My Favorite Scripts to Use with Exchange | Oddytee
Hi Paul,
I ran the Test-ExchangeServerHealth.ps1 script, and the same thing happens. It generates the HTML file but the activation preference next to my 5th server is blank
Thanks Paul,
The script works like a charm.
Hi, please see output for the Get-MailboxDatabase | select name,activationpreference command
Name : 1024-Normal Users (A-F)
ActivationPreference : {[xxxxxx, 1], [xxxxxx, 2], [xxxxxx, 3], [xxxxxx, 4], [xxxxxx, 5]}
Name : 1024-Normal Users (G-L)
ActivationPreference : {[xxxxxx, 1], [xxxxxx, 2], [xxxxxx, 3], [xxxxxx, 4], [xxxxxx, 5]}
Name : 1024-Generic Users
ActivationPreference : {[xxxxxx, 1], [xxxxxx, 2], [xxxxxx, 3], [xxxxxx, 4], [xxxxxx, 5]}
Name : 1024-VIP Users
ActivationPreference : {[xxxxxx, 1], [xxxxxx, 2], [xxxxxx, 3], [xxxxxx, 4], [xxxxxx, 5]}
Name : 1024-Normal Users (R-Z)
ActivationPreference : {[xxxxxx, 1], [xxxxxx, 2], [xxxxxx, 3], [xxxxxx, 4], [xxxxxx, 5]}
Name : 1024-Normal Users (M-Q)
ActivationPreference : {[xxxxxx, 1], [xxxxxx, 2], [xxxxxx, 3], [xxxxxx, 4], [xxxxxx, 5]}
Hi all, the script runs fine and I get an output in HTML. However it is not showing the activation preference for databases on one server at all.
If I run the Get-MailboxDatabase | select name,activationpreference command it show the activation preference as 5 which is correct.
However on the reports the field is just blank and does not show a value of 5
Can you try the Test-ExchangeServerHealth.ps1 script instead and see whether it has the same problem?
Hello,
Thanks for this script, look like very nice.
Can i execute this script just for a specific DAG ?
Cause i have many dag in my organisation with Domain contoller not open.
So i have a lot of error.
Thanks a lot for feedback
the script is not accepting more than one email address, Paul can you please take a look?
Separate the emails with a comma, and wrap each one in quotes. Eg,
“email1@domain.com”,”email2@domain.com”
Or even easier, use a distribution group.
It is working fine now.
Thanks for swift reply and great script as usual. 🙂
thanks again
Is there a version with a parameter called DAGName ? We have about 12 DAG´s in the organization and i only need the health report from one of them…
No, but if you add the other 11 DAG names to the ignorelist.txt the script should ignore them.
Thanks for your fast reply !
Does the Get-DAGHealth.ps1 script use the ignorelist.txt automatically when it is in the same folder ?
Whats the syntax inside the ignorelist.txt ?
Sorry, my bad, I thought we were talking about the Test-ExchangeServerHealth.ps1 script that this DAG health check was rolled into a while ago.
To be honest this Get-DAGHealth.ps1 script is lagging behind a bit on bug fixes and feature improvements, but it still works for most people.
So in your case I’d just recommend modifying line 103
$dags = @(Get-DatabaseAvailabilityGroup -Status)
…so that it only grabs the DAG you’re interested in, eg
$dags = @(Get-DatabaseAvailabilityGroup -Status YOURDAGNAME)
Hi
my dag seems healthy
all mailboxdatabasescopysatus are healthy or mounted
tet-replication health show everything passed
but when i run this script it does not show me the passed status for mailbxo2
i mean in the last table which it says about member health, mailbox2 cells are blank or n/a
also when i run the script first it syas
Windows Failover Clustering encountered a transient error. Trying the operation again may be successful. Error: ‘IsNodeClustered’.
+ CategoryInfo : NotSpecified: (0:Int32) [Test-ReplicationHealth], ExClusTransientException
+ FullyQualifiedErrorId : 2A256D90,Microsoft.Exchange.Monitoring.TestReplicationHealth
Add-Member : Cannot bind argument to parameter ‘Name’ because it is null.
At C:UsersmganjidaDesktopMailbox Scripts GanjiGet-DAGHealth.ps1:289 char:47
+ $memberObj | Add-Member NoteProperty -Name <<<< $($healthitem.Check) -Value $($healthitem.Result)
+ CategoryInfo : InvalidData: (:) [Add-Member], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationErrorNullNotAllowed,Microsoft.PowerShell.Commands.AddMemberCommand
and then it goes to end and completed
can you please help me on this
@mhd, were you able to figure out the issue and get it resolved? Can you please provide some inputs? Even i’m getting the same problem.
Got working. I had to enter the servername. Works great now. Very usefull
Pingback: Exchange 2013 Managed Availability vs Custom PowerShell Scripts
I don’t want to create a distribution group for 2 recipients… Has anyone been able to define multiple recipients on the To = line? Using “firstemailaddress”,”secondemaladdress” only sends to the second one specified…
Nevermind… I was not being patient enough… Great Script Paul! Thank you.
I meant Paul, sorry for calling you Chris lol!!!
Hi Chris, Great script. I am getting an error. I am not getting output on the Health Summary and Health Details. I do get output on the Server Test-Replication Report
You must provide a value for this property.
+ CategoryInfo : NotSpecified: (0:Int32) [Get-MailboxDatabase], DataValidationException
+ FullyQualifiedErrorId : CEA6502,Microsoft.Exchange.Management.SystemConfigurationTasks.GetMailboxDatabase
+ PSComputerName : sj2-exca101.corp.ourdomain.com
Once Again Paul, Great work. Thank You for this and many other GREAT articles.
Hi All,
I am trying to run this in my environment, trick is we shared an org with anotehr company.
we have our own dag, with trying to edit the script to only target my dag, i dont get full details under Health Summary or Health Details, all under member health is fine.
Any ideas?
got it to work, it still scans other servers in the org, but report is only my stuff, say yay.
once again, thanks Paul for a great script. Going to use this as a daily task now.
Feature Request and Question.
Any Change of getting DB size included in this report?
And, can the report be emailed as an attachment vs. embeded in the email?
Thanks!
I think this is THE best script I have found!
Paul,
Don’t know how tough it would be to add, but I’m supporting a large enterprise environment, and I was wondering if a status indicator, or progress of the script could be added. I’ve been running the script for about 35-40 minutes….
Of course, once I get an idea of how long this script would actually take to run, it might not be necessary, but for testing purposes, it would be a good indicator.
Just a thought.
Thanks!
Jeff
You can currently use -Verbose if you want to observe the progress of the script as it’s running.
Hi Paul,
Is there a way that we can run this report on multiple DAGs but possibly add an ignore line referencing a text file to not run on certain DAGs. We currently have 10 DAGs in our 2013 environment, but only 2 are in production so far with users.
Look for the line in the script where Get-DatabaseAvailabilityGroup is run and modify that so it includes/excludes the DAGs you want. I’ll look at incorporating an “ignore” list into a future update.
Hey Paul,
Does this work ok on 2013 CU1?
We are doing a test migration from 2010 to 2013. I have created a new DB on the 2013 infrastructure and added it to a new 2013 DAG. In EAC, is is definately showing as healthy on both MBX servers and both servers are listed under ‘Servers with copies’, but when running the Get-DagHealth, it is reporting:
VERBOSE: Retrieving Database Availability Groups
VERBOSE: 1 DAGs found
VERBOSE: —- Processing DAG DAGPREP1
VERBOSE: 2 DAG members found
VERBOSE: 0 DAG databases found
What happens when you run this command? (use your DAG name instead of mine of course)
Get-MailboxDatabase -Status | Where-Object {$_.MasterServerOrAvailabilityGroup -eq “E15DAG”}
Hey Paul,
It returns the database OK:
Get-MailboxDatabase -Status | Where-Object {$_.MasterServerOrAvailabilityGroup -eq “DAGPREP1”}
Name Server Recovery ReplicationType
—- —— ——– —————
DB-2013-1 EX2013-MBX2 False Remote
Hmmm, I’ll have to look into it further. My test lab works okay, thats all I can really say for now.
No worries Paul, thank you.
Can you see my email address that I have entered when posting these comments?
If so, feel free to email me directly if you want some information regarding the configuration to assist. It is pretty much a stock standard install, in coexistence with exchange 2010, a new database created on the 2013 MBX server and added into the new DAG that was created on the 2013 infrastructure.
Ah okay, I haven’t tested it in a 2010/2013 co-existence yet. Are you running it from the Exchange 2010 or 2013 server?
Doh! I didn’t even think to try from the 2013 server.
I have just moved the script to a 2013 CAS server and it ran fine – fully reports on the DAG and the database in the DAG. Thanks for that. #FlipDeskFriday
LOL. But at least that confirms what I suspected, that it will need to run using the higher version tools in a co-existence. Thanks 🙂
Paul,
Is there a way to integrate if a DB is mounted on act. preference 2 to show which server it needs to be mounted on for act preference 1?
Thank you,
Julian
That information is already in the report in the details section below the health summary.
Hi,
cool script… One suggestion – what you also could check is percentage of free space on the repsective DB/log disks and drop a warning if it goes below some threshold. Last successfult backup date could also be useful.
keep up the good work
Jan
Hi,
Thanks for writing this script. I have run the script and it sends me an e-mail but there is no data (blank). Any ideas why? I also get the errors described above after running. Thanks.
There’s over 100 comments above yours, I can’t tell which one you’re referring to. Which errors are you seeing?
This is the error…sorry about that.
Update-TypeData : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, D:Program FilesMicrosoftExchange ServerV14binexchange.types.ps1xml : File skipped because it was already present from “Microsoft.PowerShell”.
At D:Program FilesMicrosoftExchange ServerV14binRemoteExchange.ps1:94 char:17
+ Update-TypeData <<<< -PrependPath $typeFilePath
+ CategoryInfo : InvalidOperation: (:) [Update-TypeData], RuntimeException
+ FullyQualifiedErrorId : TypesXmlUpdateException,Microsoft.PowerShell.Commands.UpdateTypeDataCommand
Update-TypeData : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, D:Program FilesMicrosoftExchange ServerV14binExchange.partial.Types.ps1xml : File skipped b
ecause it was already present from "Microsoft.PowerShell".
Microsoft.PowerShell, D:Program FilesMicrosoftExchange ServerV14binexchange.types.ps1xml : File skipped because it was already present from "Microsoft.PowerShell".
At D:Program FilesMicrosoftExchange ServerV14binRemoteExchange.ps1:104 char:16
+ Update-TypeData <<<< -PrependPath $partialTypeFile
+ CategoryInfo : InvalidOperation: (:) [Update-TypeData], RuntimeException
+ FullyQualifiedErrorId : TypesXmlUpdateException,Microsoft.PowerShell.Commands.UpdateTypeDataCommand
You can just ignore those, they aren’t harmful to the running of the script.
If you’re not getting any results try running the script with the -Verbose parameter and look through the output it produces.
Excellent Script Paul…..But i would like to exclude few DBs in this report… How to do that ?
Excelente trabajo
Great script!!!!
Pingback: Скрипт для проверки состояния Exchange DAG Group — Get-DAGHealth.ps1 » SERGEY STRAKHOV
how to customize this script to run against one daggroup?
Look for the line in the script where Get-DatabaseAvailabilityGroup is and modify that line to just get the DAG you’re interested in.
Thanks Paul
I have a proposal for a new feature / improvement;
We have hundereds of databases, so the output spans several screens. This prevents us from easily spotting problems a a glance on a monitoring screen.
Would be great to have a switch (say -failureonly) that lists only the ‘failures’ in the output from;
Database Availability Group Health Details
Database Availability Group Health Summary
cheers
Great script, I do get a warning when running it , but the output seems fine on first glance;
WARNING: Unable to get Primary Active Manager information due to an Active
Manager call failure. Error: An Active Manager operation failed. Error
Operation failed with message: Error 0x6d1 (The procedure number is out of
range) from cli_AmGetDeferredRecoveryEntries.
There is a bug in the script :
Once the UPTIME counter reaches 1000+ hours, it shows ‘1’ in the HTML output.
We only just noticed this, because of monthly security updates force reboots often, except recently.
In this script?
No, the health check script, this one doesn’t do uptime 🙂
Its this bit: [int]$uptime = “{0:N0}” -f $uptime
Woops, wrong forum, this bug is in the ‘health check’ script , not the DAG one.
I am having an issue with the scheduled task when i run it nothing happens but if I run the script manually with the options I get the email. For the arguments this is what i have:
-command “c:scriptsdaghealthget-daghealth.ps1 -Detailed -SendEmail”.
Am i doing something wrong
Please make sure you have checked all the items in that bullet list I include in the article for running the script.
Ok i was trying to run it with a service account that has the password set to not expire but cannot log on locally to the server. It works with my domain admin account so I guess I will have to change the password on the task every month
It doesn’t need to be a domain admin account. I’ll try and write up the specific RBAC roles the account needs to run this script without giving it too many rights.
Ok will appreciate that. I tried running it with the local administrator account but it runs for several minutes without any output
Local accounts certainly won’t work, it does need to be a domain account. From memory it needs at least Exchange View-Only Org rights (there’s an existing group for that) and I think I also needed it to be a member of the local administrators group on the management server I run it on, presumably due to some PowerShell requirement that I haven’t quite worked out.
Hi Paul,
Thanks for the script and Awesome work, challenge is when i execute is doens’t generate all the output on the email and i get the following errors on the Shell window;
“You must provide a value for this property.
+ CategoryInfo : NotSpecified: (0:Int32) [Get-MailboxDatabase], DataValidationException
+ FullyQualifiedErrorId : 16C4924A,Microsoft.Exchange.Management.SystemConfigurationTasks.GetMailboxDatabase”
This two sections are not populated on the email;
“Database Availability Group SVDTDAG01 Health Summary:
Database Mounted on Preference Total Copies Healthy Copies Unhealthy Copies Healthy Queues Unhealthy Queues Lagged Queues Healthy Indexes Unhealthy Indexes
Database Availability Group SVDTDAG01 Health Details:
Database Copy Database Name Mailbox Server Activation Preference Status Copy Queue Replay Queue Replay Lagged Truncation Lagged Content Index
Database Availability Group SVDTDAG01 Member Health:”
Kind Regards,
Brian
Run it with the -Verbose switch and see if you spot any errors or warnings.
Very great job and wonderful script !
Few questions :
– When I do a detailed report, all the cells in the DAG Member Health array (last array) are yellow and there is “Transmis” inside. What does it mean ? (I’m on Exchange 2013 with CU1)
– Do you plan to make Test-ExchangeServerHealth.ps1 & Get-DailyBackupAlerts.ps1 Exchange 2013 compatible ? (It would be great 🙂
The first problem sounds like a non-English language server. I have an idea how to make that easier to deal with but for now you’d need to just look at the HTML generating sections of the script and possibly replace English words like “Success” and “Passed” to your language’s word.
Yes, I plan to test and update all the scripts for Exchange 2013 as time permits.
Thanks a lot, that was it !
Hello Paul this is a great script I have only one question, how I can have the report sent by email when autentication is required ?
Send-MailMessage (way down the bottom of the script) has a -Credential parameter. I’d recommend using a low privilege account credential.
Technet:
http://technet.microsoft.com/en-us/library/hh849925.aspx
Pingback: V1.1 of Get-DAGHealth.ps1 is Available
Version 1.1 of Get-DAGHealth.ps1 is now available for download via the link in the article above.
Thanks to those who have provided bug reports and feedback so far. I appreciate your help making this script accurate and useful.
Hi Paul,
Amazing script!
Thanks a lot.
Pingback: Failing databases, sulking network manager | 503 5.0.0 polite people say HELO
Hi,
Great script thanks Paul 🙂 I have setup scheduled tasks on your other ones and they send fine to multiple people, but with the DAG health one it seems to only send to the first person in the list. Is there need to do something slightly differenet with this script?
Cheers
Should work in the format:
To = “firstemail@domain.com”,”secondemail@domain.com”
Alternatively, try sending it to a distribution list.
Hi paul,
i have tried this format:
To = “firstemail@domain.com”,”secondemail@domain.com” in xml file,
but still not work if we send to multiple mailbox. pls help 🙂
Thanks Paul for your helpful Script,
Regarding to the Preference Tap refer to what ?
Preference is the Activation Preference for the database copy.
Thanks Paul for yor reply,
I get the following results;
Database Mounted on Preference
DB1 HO-MCH-01 1
DB2 HO-MCH-02 3
DB3 HO-MCH-03 3
the fisrt one DB1 prefernce colored with green and the others DB2 & DB3 colored with yellow, could you please explain what this colores mean?
Green = OK
Yellow = Warning
Red = Error
Blue = Information
thanks for your quick reply , but DB1 that have the green result it’s preference number =1 is this mean that DB1 have one activation Preference for the DB1 copy?
If the activate database copy is the one with the preference of 1 then the result is Green. If the active database copy is one with a higher preference then the result is Yellow to draw your attention to a possible issue.
Thanks a lot for your explain, i appreciate your Effort Paul you are my teacher 🙂
Sorry Paul, so what’s the possible issue or how can i check about this issue in the yellow color
It depends which test result has come up as a warning/yellow.
If its just the preference, then that is just a matter of doing a database switchover to the 1st preference.
Thank you very much, yes the warning in the preference, so i need to switchover to the best copy of DB.
Thanks Paul. It’s come just at the right time for us as we’ve just finished test our new DAG implementation and will be started the DB copies next week. I’ve run it on the test DBs we have in place and all is good so far!
OK, thanks a lot. drop me an email if you need help with testing.
Pingback: The UC Architects » Episode 19: The Elusive One
Hi Paul,
Did someone reported that Activation Preference information is not shown in the report. This is happening in my case. Otherwise the script return valuable info.
Here is part of output when using “-verbose”:
VERBOSE: Retrieving Database Availability Groups
VERBOSE: 2 DAGs found
VERBOSE: —- Processing DAG xxxx
VERBOSE: x DAG members found
VERBOSE: xx DAG databases found
VERBOSE: —- Processing database xxxxxxxxxxxxxx
VERBOSE: xxxxxxxxxxxxxx has 3 copies
VERBOSE: Database Copy: xxxxxxxxxxxxxxxxxxxxxxxxxx
VERBOSE: Server: xxxxxxxxxxxxxx
VERBOSE: Activation Preference:
VERBOSE: Status: Healthy
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 1
VERBOSE: Content Index: Healthy
VERBOSE: Database Copy: xxxxxxxxxxxxxxxxxxxxxxxxxxxx
VERBOSE: Server: xxxxxxxxxxxxxx
VERBOSE: Activation Preference:
VERBOSE: Status: Healthy
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 1
VERBOSE: Content Index: Healthy
VERBOSE: Database Copy: xxxxxxxxxxxxxxxxxxxxxxxxxxxx
VERBOSE: Server: xxxxxxxxxxxxxx
VERBOSE: Activation Preference:
VERBOSE: Status: Mounted
VERBOSE: Copy Queue: 0
VERBOSE: Replay Queue: 0
Thanks a lot.
Sorin
Interesting. Maybe a permissions issue? Using the same credentials can you run this command and tell me whether you see the list of servers and their preferences in the output?
Get-MailboxDatabase | select name,activationpreference
permissions are fine. Running Get-MailboxDatabase | select name,activationpreference returns correct information:
Name ActivationPreference
—- ——————–
DB1 {[xxxxxxxxxxxx, 1], [xxxxxxxxxxxx, 2], [xxxxxxxxxxxx, 3]}
DB2 {[xxxxxxxxxxxx, 1], [xxxxxxxxxxxx, 2], [xxxxxxxxxxxx, 3]}
DB3 {[xxxxxxxxxxxx, 1], [xxxxxxxxxxxx, 2], [xxxxxxxxxxxx, 3]}
Interesting. I will do my best to reproduce that and fix it.
Awesome script Paul. Really love the report. These colored reports definitely help with the management too. Keep up the great work.
Hi Paul, fantastic script. I just noticed however that after some recent server patching, that I’m getting some false-positves in the HTML output. “Healthy Queues” are all red, but with a value of zero, even though my queues are fine. “Truncation Lagged” and “Content Index” columns are all blank. Any ideas? I’m running 2010 SP2 RU3.
Thanks again!
-Alex
Run the script in a PowerShell window with the -verbose switch and see whether anything stands out.
Hi Paul…clean output with the verbose switch so not sure why “Healthy Queues” is listed as “0” and is highlighted red. It was working fine prior to server patches…weird. Any other ideas?
Thanks!
Was it Windows patches or Exchange updates?
Hi Paul, FYI it was windows patches…
Can you ID the list of patches you installed on the date it stopped working, and either send them to me or paste them here? I let my lab servers automatically install updates and I’ve not run into this issue myself.
I am having the same issue on new servers running Exchange 2013 CU1 – Windows 2012.
Julian, I have not tested this script at all on Exchange 2013 so you may be seeing some other issue.
Well it’s definitely the same symptoms. Thanks for the script , I will try to troubleshoot when I find some time.
I get the same issue on WS2012.
@Alex – I’m thinking this may actually be a PowerShell v3 issue of some kind. Did your servers get updated with the Windows Management Framework 3.0 when the problem started?
@alex and @julian – I think I have found the problem. Will work on a fix and upload a new version as soon as I can.
Great script, worked like a charm. I got the same error that other reported after the initial run, but none afterwards. Great way to keep track of those pesky “failed” indexes
Thanks you very much for sharing this Awesome script!!…
can you add few other command to this script like
1) Get-Counter “MSExchange RpcclientaccessUser count”
2) Get-Counter “MSExchange owaCurrent Unique Users”
from this command we can monitor that no.of user connection has shared equally among CAS servers.
Awesome script!! Thank you very much!!
Pingback: Some useful exchange monitoring tools | 503 5.0.0 polite people say HELO
Thanks for the great script Paul. I’ve got it running twice a day, sending an email to our shared IT Team mailbox.
Top work 🙂
Thanks, It works great on my environment
There´s something Im not sure what it means..
In the Member Health table from one of my DAGs (got 4) shows “N/A” in the following columns
DB Copy Suspended
DB Initializing
DB Disconnected
DB Log Copy Keeping Up
DB Log Replay Keeping Up
All the other columns in the same table shows “Passed”
Any idea?
That usually indicates the server hosts no passive database copies. It isn’t a problem unless you’re concerned about having a balanced distribution of active/passive copies in your DAG.
This script is awesome Paul!
How often do you recommend running this script. Is it safe to run it maybe every hour or once a twice a day? Just want to make sure that it’s not putting any kind of load on my servers. 🙂
Thx.
I consider it safe to run without putting load on the servers. I run it once in the morning so the report is in my inbox when I start work.
Great script, Paul. I added a check for Incremental and Full backups to the “Detailed” switch in your script, but I’m having problems comparing the date to a variable. Any thoughts on what I can do? I can send you the whole script if you want to see how it’s pulled in.
$incrPass = ((Get-Date).AddDays(-1)).ToString(“yyyy-MM-dd HH:mm:ss”)
$incrWarn = ((Get-Date).AddDays(-4)).ToString(“yyyy-MM-dd HH:mm:ss”)
#Warn if Incremental backups have not run recently
If ($(line.”Last Incremental Backup”).ToString -lt $incrPass)
{
$htmltablerow = $htmltablerow + “$($line.”Last Incremental Backup”)”
}
Elseif ($(line.”Last Incremental Backup”).ToString -lt $incrWarn)
{
$htmltablerow = $htmltablerow + “$($line.”Last Incremental Backup”)”
}
I’ve published an entire script for checking backups. You might prefer to use that or use some of the code from it to customize your own.
https://www.practical365.com/set-automated-exchange-2010-database-backup-alert-email
Sounds good, I’ll check it out. Thanks.
Just to follow up, I looked at your code and then back at mine when I realized I was missing a “$” in my “($(line.”Last Incremental backup”)” section. I looks like it all works now. I can send you the change if you want to give it a shot. If not, no worries.
Thanks again, and keep the scripts coming! 🙂
Pingback: PowerShell Tip: Fix All Failed Exchange Database Content Indexes
Works Perfect!
Q: On the Health Summary table, Column Preference, it shows 1 Green and the rest of the DB’s 2 Yellow. What does the Yellow represents?
Thanks.
Database Mounted on Preference
DB01 SecondServer 1
DB02 FirstServer 2
DB03 SecondServer 2
DB04 FirstServer 2
DB05 SecondServer 2
DB06 FirstServer 2
DB07 SecondServer 2
DB08 FirstServer 2
DBTest SecondServer 2
Yellow indicates that the database is mounted on a server that is not Activation Preference 1.
Great script!
Is there a way to modify it so that it only sends an email if the script turns up a red flag? That would be really useful.
Well, it is PowerShell so of course it can be modified to do anything you like 🙂
But consider that the script also checks for a lot of “warning” conditions that aren’t necessarily an error or serious fault but may be something that the administrator wants to be aware of.
Thank you, script is very useful, I testing in my enviroment, and have some questions.
When i get report on mail, some word looks like ????? for example curent date and PASSED for member health, in yellow bars i see ?????
I am using russian 2008 r2 and Exchange 2010, where i must fix code page ? Please help.
Anyway thanks, script realy helps monitor DAG Group
Try adding the encoding parameter that another person mentions here:
https://www.practical365.com/get-daghealth-ps1-database-availability-group-health-check-script#comment-13966
Thanks Paul!
Great script once again 🙂
Cheers!
Great script. I missed only the sort function in line 162 for a optimized view (for the case that the server have different names).
$tmpservers = @(Get-ExchangeServer) |sort
I am having a hard time getting this to run as a scheduled job where “Run whether user is logged on or not” is selected. It runs just fine with the “Run only when user is logged on”.
When redirecting output I get:
VERBOSE: Connecting to myserv1.domain
VERBOSE: Connecting to myserv1.domain
VERBOSE: Connecting to myserv1.domain
VERBOSE: Connecting to myserv1.domain
Failed to connect to an Exchange server in the current site.
Any ideas?
Are you also ticking the “run with highest privileges” box?
I am checking it.
Sorry that is not very clear. Yes, it is checked.
Could it be the credentials you’re using do not have the required rights? I’ll admit I haven’t put any thought yet into a nice RBAC role for this script and I just run it with a full Org Admin in my test lab for now. I’m wondering if you’re accidentally running it as the local admin on the server or something like that?
First I gave only view only org manager rights but then I gave full Org Man rights. And the script runs as the user when logged in as the user or if I select “Run only when user is logged on”. I will play with it more and will update if I find something.
Thx Paul … really nice!
Thanks for the effort Paul!
Super! Very usefull and great script. Thank you very much.
Little bug report:
1. I’m also get Update-TypeData error ( http://pastebin.com/putBAuAu ) on first run of script as Alex C.
2. Because of Russian date and time formats on server I get email with question marks instead of month name.
So I added -Encoding parameter to Send-MailMessage commandlet and month name now in russian like it should. Now my command looks like this:
Send-MailMessage @smtpsettings -Body $htmlreport -BodyAsHtml -Encoding ([System.Text.Encoding]::UTF8)
Thanks again.
Best regards,
Oleg.
I always seem to forget to set that encoding. Thanks for pointing it out, will fix in next version.
I’ve just added one line in the if ($SendEmail) block:
$encoding = [System.Text.Encoding]::UTF8
No need to add more paramaters to command line.
Also added more options to switch operators to support russian translation, they now look like
Switch ($($line.TCPListener))
{
$null { $htmltablerow = $htmltablerow + “$($line.TCPListener)” }
“Passed” { $htmltablerow = $htmltablerow + “$($line.TCPListener)” }
“Проверка пройдена” { $htmltablerow = $htmltablerow + “$($line.TCPListener)” }
default { $htmltablerow = $htmltablerow + “$($line.TCPListener)” }
}
+ “-Encoding $encoding” after send-emailmessage
Hi Paul,
I am getting the below error when trying to run the script. My be a user error but just wondering if you can help?
[PS] C:Install.set>.Get-DAGHealth.ps1
The ‘<' operator is reserved for future use.
At C:Install.setGet-DAGHealth.ps1:109 char:51
+ $summaryintro = "Database Availability Group < <<<$($dag.Name) Health Summary:”
+ CategoryInfo : ParserError: (<:OperatorToken) [], ParseException
+ FullyQualifiedErrorId : RedirectionNotSupported
All good find the error. It was a user error in the email address…
Just ran it, worked perfectly first time. Scheduled task is in place to run it a few times per day. Not quite at the point where I can sit on the beach 8 hours a day, but getting close thanks to Paul :-p
Who needs expensive monitoring software when you got great scripts like this.
Thanks Paul, great work mate.
Ed
Good monitoring software is worth the price. But yeah, for those who can’t afford it thank goodness PowerShell lets us build scripts like this 🙂
Thanks awesome script
very helpful
Hi Paul
This script is really awesome and am huge fan of you
Only one Flow which i found is , if the DB is moved or failover from one server to another server
can it be show like
DBName on server2 should be on Server1
what am trying tell is DB is server1 , due to some N/w issue and the DB was moved and sitting on Server 2
can this report show like DBName on server2 should be on Server1
or am i missing the information in this report.
The script doesn’t attempt to diagnose in detail or recommend a specific action be taken. It is intended to present you enough details of possible issues so that you can make decisions about how to remediate problems.
So in the case of databases not being on their activation preference 1 server, the script flags that in the summary table, and then in the details table it also tells you which server is AP1 for that DB (but you can easily see that in EMC anyway). So then its up to you whether the DB should be moved or not.
Awesome script Paul.
Thanks!
Thank you very much, Paul, for sharing your work! Awesome! 🙂
For your information, and I guess you already know, when running the script, the following errors are displayed, though the script is executing perfectly.
Update-TypeData : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, D:Program FilesMicrosoftExchange ServerV14binexchange.types.ps1xml : File skipped because it was already present from “Microsoft.PowerShell”.
Update-TypeData : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, D:Program FilesMicrosoftExchange ServerV14binExchange.partial.Types.ps1xml : File skipped because it was already present from “Microsoft.PowerShell”.
I was running the script in a normal EMS session.
Thanks again!
Cheers,
Alex
Thanks Alex, I’ll work on that bug.
Thanks paul
great script….
I’m trying to run the DAG Heath Report on the same server I have your previous Health Check report running. When I run the Dag Report, Powershell gives me the following errors, any ideas?
Update-TypeData : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, C:Program FilesMicrosoftExchange ServerV14binexchange.types.ps1xml : File skipped because i
t was already present from “Microsoft.PowerShell”.
At C:Program FilesMicrosoftExchange ServerV14binRemoteExchange.ps1:94 char:17
+ Update-TypeData <<<< -PrependPath $typeFilePath
+ CategoryInfo : InvalidOperation: (:) [Update-TypeData], RuntimeException
+ FullyQualifiedErrorId : TypesXmlUpdateException,Microsoft.PowerShell.Commands.UpdateTypeDataCommand
Update-TypeData : The following error occurred while loading the extended type data file:
Microsoft.PowerShell, C:Program FilesMicrosoftExchange ServerV14binExchange.partial.Types.ps1xml : File skipped b
ecause it was already present from "Microsoft.PowerShell".
Microsoft.PowerShell, C:Program FilesMicrosoftExchange ServerV14binexchange.types.ps1xml : File skipped because i
t was already present from "Microsoft.PowerShell".
At C:Program FilesMicrosoftExchange ServerV14binRemoteExchange.ps1:104 char:16
+ Update-TypeData <<<< -PrependPath $partialTypeFile
+ CategoryInfo : InvalidOperation: (:) [Update-TypeData], RuntimeException
+ FullyQualifiedErrorId : TypesXmlUpdateException,Microsoft.PowerShell.Commands.UpdateTypeDataCommand
Thanks. I believe that is a harmless bug during the script initialization that can be ignored, but let me know if you’re also not getting any results at all from the script when it finishes. In the mean time I’ll try to squash that bug.
It seems to be working fine, great script.
Whoah, can’t wait to give this a run tomorrow 🙂
Up and running. So far works just fine. Nice work Paul! No flaws detected yet.
GENIUS!!
Thanks Paul, Another great script
Pingback: Get-DAGHealth.ps1 – Database Availability Group Health Check Script « JC’s Blog-O-Gibberish