관리 홈 페이지에서 설정할 수 없을때 Windows Powershell 로 변경하는 방법입니다.
1. Sharepoint 2010 Management Shell 을 실행합니다.
2. 다음 명령을 입력합니다.
Set-SPSite -Identity "<SiteCollection>" -LockState "<State>"
<SiteCollection> : 잠그거나 잠금을 해제할 사이트 모음 URL
<State>
- Unlock : 사이트 잠금이 해제되어 사용자가 사이트를 사용할 수 있음.
- NoAdditions : 사용자가 사이트 모음에 새 콘텐츠를 추가 할 수 없습니다.
다만, 기존 콘텐츠를 업데이트 및 삭제는 허용함.
- ReadOnly : 사용자가 콘텐츠를 추가, 업데이트 또는 삭제 할 수 없음.
- NoAccess : 사용자가 콘텐츠에 액세스 할 수 없음.
3. 예제
- 잠금해제 : Set-SPSite -Identity http://test.virusblue.com -LockState Unlock
- 읽기만허용 : Set-SPSite -Identity http://test.virusblue.com -LockState ReadOnly
- 잠금 : Set-SPSite -Identity http://test.virusblue.com -LockState NoAccess
끝.
- 2013/06/19 09:44
- Sharepoint Server
- virusblue.egloos.com/2416874
- 0 comments





덧글