Re analyize button is not working

sns 9,251 Reputation points
2023-03-20T18:20:17.46+00:00

Re analyize button is not working under health anaylize from monitor from CA.

We expect warning should go after we have performed necessary remedy to avoid warning.

However after click on reanalize button also it is showing same warning.

but when we see the respective count from database table it is showing correct count ( reduced count)

I suspect something wrong with that button. Please suggest.

Microsoft 365 and Office | SharePoint Server | For business
0 comments No comments

Answer accepted by question author

Emily Du-MSFT 51,991 Reputation points Microsoft External Staff
2023-03-21T07:37:18.4333333+00:00

You could run PowerShell to force run SharePoint Health Analyzer Jobs on demand.

Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
  
#Display name of the Timer Job to Run on-demand

$TimerJobName = "Health Analysis Job" 

#Get the Timer Job

$TimerJobs = Get-SPTimerJob | where { $_.DisplayName -match $TimerJobName} 

foreach($TimerJob in $TimerJobs)

{

    Write-Host "Running:" $TimerJob.DisplayName

    $TimerJob.RunNow()

}

If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.