如何在sharepoint PowerShell中使显示名称更大

时间:2011-04-25 17:51:41

标签: sharepoint powershell sharepoint-2010

我正在运行sharepoint 2010 Management Shell,我这样做了

Get-SPFeature –Site http://sp2010

带回来

DisplayName             Id           Scope
--------------------------------------------
TheOneIWantIsToLo.... someId         Site

现在我需要显示名称来取消激活功能并再次激活。然而,我不知道全名是什么,因为它切断了它。

我怎样才能让它更大,所以它不会这样做?

2 个答案:

答案 0 :(得分:8)

这对我有用:

Get-SPFeature -Site http://sp2010 | format-table -auto

答案 1 :(得分:1)

如果您只想要显示名称,也可以使用:

Get-SPFeature –Site http://sp2010 | ForEach-Object {write-host $_.DisplayName}