noe*_*ard 13 sharepoint template sharepoint-2007
如何/在哪里可以找到用于 SharePoint 网站或页面的模板。
我有一个想要模仿的页面,但我不知道在哪里可以找到该页面和站点的模板?
小智 10
查看页面源代码并搜索“ var g_wsaSiteTemplateId”后,您会找到一个代码,例如STS#0或STS#1等...要了解模板代码的含义,您可以查看下表:absolute-sharepoint.com
Template ID | Title
------------------------ -----------------------------------------------------------
GLOBAL#0 | Global template
STS#0 | Team Site
STS#1 | Blank Site
STS#2 | Document Workspace
MPS#0 | Basic Meeting Workspace
MPS#1 | Blank Meeting Workspace
MPS#2 | Decision Meeting Workspace
MPS#3 | Social Meeting Workspace
MPS#4 | Multipage Meeting Workspace
CENTRALADMIN#0 | Central Admin Site
WIKI#0 | Wiki Site
BLOG#0 | Blog
SGS#0 | Group Work Site
TENANTADMIN#0 | Tenant Admin Site
APP#0 | App Template
APPCATALOG#0 | App Catalog Site
ACCSRV#0 | Access Services Site
ACCSRV#1 | Assets Web Database
ACCSRV#3 | Charitable Contributions Web Database
ACCSRV#4 | Contacts Web Database
ACCSRV#5 | Projects Web Database
ACCSRV#6 | Issues Web Database
ACCSVC#0 | Access Services Site Internal
ACCSVC#1 | Access Services Site
BDR#0 | Document Center
DEV#0 | Developer Site
DOCMARKETPLACESITE#0 | Academic Library
EDISC#0 | eDiscovery Center
EDISC#1 | eDiscovery Case
OFFILE#0 | (obsolete) Records Center
OFFILE#1 | Records Center
OSRV#0 | Shared Services Administration Site
PPSMASite#0 | PerformancePoint
BICenterSite#0 | Business Intelligence Center
SPS#0 | SharePoint Portal Server Site
SPSPERS#0 | SharePoint Portal Server Personal Space
SPSPERS#2 | Storage And Social SharePoint Portal Server Personal Space
SPSPERS#3 | Storage Only SharePoint Portal Server Personal Space
SPSPERS#4 | Social Only SharePoint Portal Server Personal Space
SPSPERS#5 | Empty SharePoint Portal Server Personal Space
SPSMSITE#0 | Personalization Site
SPSTOC#0 | Contents area Template
SPSTOPIC#0 | Topic area template
SPSNEWS#0 | News Site
CMSPUBLISHING#0 | Publishing Site
BLANKINTERNET#0 | Publishing Site
BLANKINTERNET#1 | Press Releases Site
BLANKINTERNET#2 | Publishing Site with Workflow
SPSNHOME#0 | News Site
SPSSITES#0 | Site Directory
SPSCOMMU#0 | Community area template
SPSREPORTCENTER#0 | Report Center
SPSPORTAL#0 | Collaboration Portal
SRCHCEN#0 | Enterprise Search Center
PROFILES#0 | Profiles
BLANKINTERNETCONTAINER#0 | Publishing Portal
SPSMSITEHOST#0 | My Site Host
ENTERWIKI#0 | Enterprise Wiki
PROJECTSITE#0 | Project Site
PRODUCTCATALOG#0 | Product Catalog
COMMUNITY#0 | Community Site
COMMUNITYPORTAL#0 | Community Portal
SRCHCENTERLITE#0 | Basic Search Center
SRCHCENTERLITE#1 | Basic Search Center
SRCHCENTERFAST#0 | FAST Search Center
visprus#0 | Visio Process Repository
Run Code Online (Sandbox Code Playgroud)
小智 6
Salaudeen Rajack 的博客 www.sharepointdiary.com 上有一个教程,其中解释了 6 种确定 SharePoint 站点模板的方法。链接可以在这里找到。
引用:使用SharePoint Manager,浏览网站,然后查找“Web 模板”。
Stsadm : stsadm.exe -o enumallwebs -databasename > Template.txt 现在,打开 template.txt 文件并检查模板。这个技巧甚至可以用于查找 SharePoint 2010 的网站模板名称。
Sql Server : Sql server 是 SharePoint 的主干,所以 SELECT Title, WebTemplate FROM dbo.Webs WHERE Title='Your Site'
您可以使用SharePoint 对象模型查找 SharePoint 站点的站点模板。只需查询 SPWeb.WebTemplateId。
SharePoint 2010 - 查找使用的模板创建网站:在 SharePoint 2010 中,您可以使用PowerShell Cmd-let获取网站模板列表:
Get-SPWebTemplate
。列出 Web 模板的示例:
Get-SPWebTemplate -Identity SGS#0
Get-SPWebTemplate -Identity S*
Get-SPWebTemplate | ? { $_.Name -like "*STS*" }
转到SharePoint 页面的查看源>>搜索“SiteTemplateID”以查找站点模板名称 SharePoint 2010。
| 归档时间: |
|
| 查看次数: |
103542 次 |
| 最近记录: |