Posts

Showing posts from July, 2014
Listing All SharePoint Server 2013 Features – Including Name, Title, Scope, ID and Description At times while working with SharePoint I need a reference table which can provide basic details of all the out of the box features that available as part SharePoint Server 2013 installation. For some reason I didn't manage to find documentation around that online so I decided to generate it myself. I used PS to generate a csv file (Features.csv) which contains DisplayName, Title, Scope, ID and Description of all the available features in SharePoint. Once csv is generated then I import it into a Excel sheet to do a bit of formatting to generate the table below. The PS is really simple and use "*" as a delimiter. The reason of using asterisk is due to the fact that comma and semicolon are used within title and description of some of the features. I also use LCID of 1033 (English) because that was the locale for my installation of SharePoint Server 2013. $lcid=1033 $d...