Command check features id SharePoint 2010.
When you have get error on sharepoint 2010 it show ID error. SharePoint often show id not show name application error. You have match id with name application again.
Today I have command powershell SharePoint for check id application name on site , farm and web .
It ‘s use command Get-SPFeature for match ID and name application.
Today I have command powershell SharePoint for check id application name on site , farm and web .
It ‘s use command Get-SPFeature for match ID and name application.
Powershell command check features ID SharePoint 2010.
ID features active on farm SharePoint 2010.
1. Get-SPFeature | Sort -Property DisplayName
2. Get-SPFeature | Sort -Property Id
3. Get-SPFeature | Sort -Property Scope,DisplayName | FT -GroupBy Scope DisplayName,Id
4. Get-SPFeature | Sort -Property Scope,DisplayName | FT -GroupBy Scope DisplayName,Id > c:\AllInstalledFeaturesSharePoint2010.txt
ID features active on Site SharePoint 2010.
1. Get-SPFeature -Site http://sitecollectionurl | Sort DisplayName | FT DisplayName,Id
ID features active on Web SharePoint 2010.
1. Get-SPSite http://sitecollectionurl | Get-SPWeb -Limit ALL | %{ Get-SPFeature -Web $_ } | Sort DisplayName -Unique | FT DisplayName,Id
I think this article is helpful for solve problems SharePoint 2010.
Good luck.
Good luck.
No comments:
Post a Comment