I have a question about Exchange counter in Ex2016CU1.
After upgrade from RTM to CU1 there were a lot of performance counters errors in applications log.
As usual, I tried to fix it by script:
Add-PsSnapin Microsoft.Exchange.Management.PowerShell.Setup
$files = Get-ChildItem $exinstallsetupperf*.xml
Write-Host "Registering the perfmon counters"
Write-Host
$count = 0;
foreach ($i in $files)
{
$count++
$f = $i.directory, "", $i.name -join ""
Write-Host $count $f -BackgroundColor red
New-PerfCounters -DefinitionFileName $f
}
After that counters were recreated, but they don't work anymore. My monitoring system (Zabbix) says "NO DATA" on all parameters of Exchange servers. I checked manually in perfmon, when I choose any Exchange counter, "Instances of selected object" are empty,
I cannot add counter at all.
Is it known issue of CU1?