获取网站集上的所有已安装功能

Get-SPFeature -Site https://mysharepointsite/sites/test

Get-SPFeature 也可以在 Web 范围(-Web <WebUrl>),服务器范围(-Farm)和 Web 应用程序范围(-WebApplication <WebAppUrl>)上运行。

获取网站集上的所有孤立功能

Get-SPFeature 的另一种用法是找到没有范围的所有功能:

Get-SPFeature -Site https://mysharepointsite/sites/test |? { $_.Scope -eq $null )