After installation , I always look at health analyzer to check for warning/errors but , as you all know timer job will run at an interval, so decided to run manually of course using Power Shell.
$jobs = Get-SPTimerJob | Where-Object {$_.Title -like "Health Analysis Job*"}
foreach ($job in $jobs)
{
$job.RunNow()
}
Check for the warning/errors before passing to the clients 🙂