开发者

How to make display name bigger in sharepoint power shell

I am running the sharepoint 201开发者_运维知识库0 Management Shell and I am did this

Get-SPFeature –Site http://sp2010

Comes back with

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

Now I need the display name to deactive the feature and active again. Yet I don't know what the full name is as it cuts it off.

How can I make it bigger so it won't do this?


This worked for me:

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


If you just want the display name you can also use:

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜