How to start User Profile Synchronization Service using PowerShell?
Open SharePoint Management Shell.
Get-SPServiceInstance | Where-Object {$_.TypeName -eq 'User Profile Synchronization Service'}
Using this powershell commandlet you can get GUID details.
Start-SPServiceInstance –Identity “GUID of the Service application”
Sometimes your User Profile Synchronization service might stuck in “Starting” due to some issues in Synchronization. To Stop that service, use the below command
Stop-SPServiceInstance –Identity “GUID of the Service application”
Open SharePoint Management Shell.
Get-SPServiceInstance | Where-Object {$_.TypeName -eq 'User Profile Synchronization Service'}
Using this powershell commandlet you can get GUID details.
Start-SPServiceInstance –Identity “GUID of the Service application”
Sometimes your User Profile Synchronization service might stuck in “Starting” due to some issues in Synchronization. To Stop that service, use the below command
Stop-SPServiceInstance –Identity “GUID of the Service application”
Works! Thanks
ReplyDelete