Skip to content

Instantly share code, notes, and snippets.

@rheid
Created March 21, 2016 14:43
Show Gist options
  • Save rheid/0b5447e70866e8fc3f83 to your computer and use it in GitHub Desktop.
Save rheid/0b5447e70866e8fc3f83 to your computer and use it in GitHub Desktop.
SharePoint Export Feature ID
//Export Features ID, DisplayName
Get-SPFeature | select ID, DisplayName, Scope, CompatibilityLevel | Export-Csv c:\Features.csv
//Export all Features properties to CSV
get-SPFeature | Export-Csv c:\AllFeaturesProp.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment