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 = $c..