Forum Discussion

Daniel Westerdale's avatar
Daniel Westerdale
Iron Contributor
Feb 08, 2018
Solved

SharePoint Services and Service Applications List

Hi   I am planning to install the https://blogs.technet.microsoft.com/stefan_gossner/2017/12/12/december-2017-cu-for-sharepoint-2016-is-available-for-download/  on to a small farm.    As well...
  • Trevor Seward's avatar
    Feb 08, 2018
    It is the Service Instance (Get-SPServiceInstance) that indicates where a particular Service Application will be running. Get-SPServiceInstance can be filtered by server. Alternatively, you could do something akin to:

    $sa = Get-SPServiceApplication | ?{$_.TypeName -match 'profile'}
    foreach($ins in $sa.Parent.Instances)
    {
    $ins.Parent
    }

Resources