반응형
Sharepoint version history에서 표현되지 않는 필드 설정 하기...
sharepoint 관리쉘 실행.
# First load SharePoint Core Assembly
[System.Reflection.Assembly]::LoadWithPartialName(“Microsoft.SharePoint”)
# SET YOUR PARAMETER HERE FOR url, Listname, fieldname
$url = "http://servername";
$list = "ListName";
$field = "field";
#Setting up context
$contextSite = New-Object Microsoft.SharePoint.SPSite($url);
$contextWeb = $contextSite.OpenWeb();
$list = $contextWeb.Lists.TryGetList($list);
$field = $list.Fields[$field];
# Hides fields from version history
$field.ShowInVersionHistory = 0;;
# Don't forget to update this field
$field.Update();
# And finally dispose everything.
$contextWeb.Dispose();
$contextSite.Dispose();
반응형
'IT 관련 이야기 > Sharepoint3' 카테고리의 다른 글
Sharepoint Large file handle (0) | 2014.01.16 |
---|---|
Sharepoint 2013 Update Fail ... (0) | 2013.11.19 |
sharepoint Custom Search 관련 (0) | 2013.10.04 |
Sharepoint 2013 CU 적용 시 너무 시간이 오래 걸릴때..... (0) | 2013.10.03 |
Security Token caching 관련 스크랩 (0) | 2013.09.12 |