Forum Discussion
Daniel Westerdale
Feb 08, 2018Iron Contributor
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...
- Feb 08, 2018It 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
}
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
}
$sa = Get-SPServiceApplication | ?{$_.TypeName -match 'profile'}
foreach($ins in $sa.Parent.Instances)
{
$ins.Parent
}
Daniel Westerdale
Feb 12, 2018Iron Contributor
I found the Get-SPServiceInstance to be the most useful. Thanks, I added the output to my test/regression plan.
I also ran the script snippet but this seem seems to show all the minroles configured for the Farm; against the current server. This didn't make any sense as I know from looking a Central Admin that this server only performs one of the minroles and not all of them at the same time!