IT 관련 이야기/Sharepoint2

등록된 사이트템플릿 이름 및 정보 확인 방법

종소리도깨비 2011. 10. 11. 16:01
반응형
가끔 사이트 템플릿 정보를 확인해야 할경우가 있다. 그럴경우 참조 하면 됨.
파워쉘 명령어를 통해 다음과 같이 확인 가능하다.

$theSiteColl = New-Object Microsoft.SharePoint.SPSite("http://server")  
$theWeb
= $theSiteColl.OpenWeb()  
$theWeb
.GetAvailableWebTemplates(1033) | select name, title  

http://stackoverflow.com/questions/565771/sharepoint-find-the-sitetemplate-value-of-a-wsp-template
반응형