Pergunta

We have SharePoint 2013 and running the following PS cmdlet:

get-spserviceinstance | ? {$_.Typename -eq "User Profile Service"}

We get the following result:

enter image description here

I am not sure why there are too many User Profile Services and two of them are Online. Does that look right? The reason I am asking, is that User Profile Sync has been running to day and when I click on stop, it is stuck in stopping.

Foi útil?

Solução

You have more copies of each services because your farm has more servers.

Try this to see the online services:

Get-SPServiceInstance | where {$_.Status -eq "online" } | Sort TypeName | Format-Table TypeName,Id,Status,Server

Take also a look here: multiple results for each service instance

Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top