Hi All,
These days while working on "Enterprise Search" .I faced an error and when I went to User Profile Synchronization Service which is in(Central admin->Application Management->Service Application->Manage Services on Server) it is in "Starting mode" . I binged in for this solution and many url's suggested to create new user profile and blah blah blah . Then I had a look on my Timer service and it too is fine, And I remembered a time in the past where deploying updates jacked up the Timer service, making it appear as it was running when it really wasn't. I opened Powershell
These days while working on "Enterprise Search" .I faced an error and when I went to User Profile Synchronization Service which is in(Central admin->Application Management->Service Application->Manage Services on Server) it is in "Starting mode" . I binged in for this solution and many url's suggested to create new user profile and blah blah blah . Then I had a look on my Timer service and it too is fine, And I remembered a time in the past where deploying updates jacked up the Timer service, making it appear as it was running when it really wasn't. I opened Powershell
1.$farm=Get-SPFarm
2.$farm.TimerService.Instances
After running second line I go ID of Timer Server and used it in below command
1.$timer=$farm.TimerService.Instances | where {$_.ID -like "4824-2425-2132-2442*"} 2.$timer.Status = [Microsoft.SharePoint.Administration.SPObjectStatus]::Online 3.$timer.update()
When I look back Manage Services on Server which is in(Central admin->Application Management->Service Application->Manage Services on Server) it is in "Start" Mode.