惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Cisco Talos Blog
Cisco Talos Blog
C
Check Point Blog
博客园_首页
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Martin Fowler
Martin Fowler
Recorded Future
Recorded Future
S
Security @ Cisco Blogs
L
LINUX DO - 最新话题
博客园 - 司徒正美
P
Privacy International News Feed
G
Google Developers Blog
I
Intezer
Hacker News - Newest:
Hacker News - Newest: "LLM"
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
C
Cybersecurity and Infrastructure Security Agency CISA
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Scott Helme
Scott Helme
K
Kaspersky official blog
I
InfoQ
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Webroot Blog
Webroot Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
大猫的无限游戏
大猫的无限游戏
D
Docker
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
W
WeLiveSecurity
Microsoft Azure Blog
Microsoft Azure Blog
Spread Privacy
Spread Privacy
量子位
H
Hacker News: Front Page
Simon Willison's Weblog
Simon Willison's Weblog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
SecWiki News
SecWiki News
S
Security Affairs
Latest news
Latest news
人人都是产品经理
人人都是产品经理
C
CERT Recently Published Vulnerability Notes
S
Security Archives - TechRepublic
V
Visual Studio Blog
T
Troy Hunt's Blog
S
Secure Thoughts
F
Fortinet All Blogs
V
V2EX
The Register - Security
The Register - Security
J
Java Code Geeks
MongoDB | Blog
MongoDB | Blog
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO

博客园 - Razor#

Biztalk SQL 适配器之数据类型支持 Biztalk 32Bit or 64Bit ?Event ID 5754 Sharepoint 开发心得No.4: [转载]Feature.xml文件介绍 Sharepoint 开发心得No.3: 自定义列(Field)开发 Sharepoint 开发心得No.2: 列表(文档库)列宽设置 Sharepoint 开发心得No.1: 列表(文档库)级别是否可见设置 - Razor# VS2008发布Sharepoint工作流时Infopath模板问题 Contact Selector控件 Biztalk 2006基础认知 字符编码格式小结(ASCII/Unicode/UTF-8) Sharepoint 2007 Sdk常用基础操作 Sharepoint 2007部署Webpart的方式(二):STSDEV开发dotnet 3.5的webpart Sharepoint2007 部署Webpart的方式(一) Windows SharePoint Services 3.0 Service Pack 1 VS2008构建MOSS表单工作流 MOSS 工作流开发中关于Workflow.xml feature.xml Sharepoint 工作流基础 InfoPath2007 创建安全的数字证书模板发布(Domain Certificate Authority Signing InfoPath 2007 Forms) 用证书实现windows 2003下IIS的SSL安全通信 - Razor#
How to install Application Templates on WSS3.0
Razor# · 2008-07-11 · via 博客园 - Razor#

Instructions

Note: To install or remove a server admin template, you must have Administrator rights to both the Windows SharePoint Services site and to the root of the server on which it is to be installed or removed. Installation and removal are done via the Stsadm.exe command-line utility located at the following path: %PROGRAMFILES%\common files\microsoft shared\web server extensions\12\bin.

Installing a template:

  1. Before installing a server admin template, you must first install the Application Template Core solution, ApplicationTemplateCore.wsp. (Click here to download). If you have already installed this solution, proceed to Step 2.
    1. Pull the core file, ApplicationTemplateCore.wsp, from the extracted distribution. The core solution file will be added to the solution store, a table in the Windows SharePoint Services configuration store that holds solution files.
    2. Via command line, run stsadm -o addsolution -filename <file_path>\ApplicationTemplateCore.wsp
    3. Next, run stsadm -o deploysolution -name ApplicationTemplateCore.wsp -allowgacdeployment
      (Additional attributes may be required based on your Windows SharePoint Services configuration. For example:
      Single Server: [ -local | -time <time to deploy at> ]
      Farm: [ -immediate | -time <time to deploy at> ]
      To see the list of attributes, run stsadm -help deploysolution)
    4. Finally, run stsadm -o copyappbincontent
  2. Pull the solution file, <template_name>.wsp, from the extracted distribution. The solution file will also be added to the solution store.
  3. Via command line, run stsadm -o addsolution -filename <file_path>\<template_name>.wsp
  4. Next, run stsadm -o deploysolution -name <template_name>.wsp -allowgacdeployment
    (Additional attributes may be required based on your Windows SharePoint Services configuration. For example:
    Single Server: [ -local | -time <time to deploy at> ]
    Farm: [ -immediate | -time <time to deploy at> ]
    To see the list of attributes, run stsadm -help deploysolution)
  5. To check the deployment status, browse to the WSS Central Administration site. Click the Operations tab, and then click Solution management under global configuration.
  6. After all the solutions are marked Globally Deployed, run iisreset from the command line.
Creating a site:
  1. Log into the SharePoint site as the site administrator.
  2. From the Site Actions drop-down menu in the top right, select Site Settings.
  3. Under the Site Administration section, select Sites and Workspaces.
  4. Select Create to create a new site using a site template.
  5. Complete the new SharePoint site information. In the Template Selection section, select the Application Templates tab. Any server admin templates that have been deployed will be listed here.
  6. Select the template to use for this site and click Create.
A site has now been created using the application template.

Removing a template:

This process will not remove any sites that were already created using the template. It will only prevent users from creating new sites based on the template. The Application Template Core solution must remain installed and deployed for other server admin templates to be installed.

  1. As administrator, access the server. Removal is done via the command line utility stsadm.
  2. To retract a solution from being available to SharePoint sites, run stsadm -o retractsolution -name <template_name>.wsp (To see a list of optional attributes that can be added to this command, run stsadm -help retractsolution)
  3. To remove a solution from the server, run stsadm -o deletesolution -name <template_name>.wsp (To see a list of optional attributes that can be added to this command, run stsadm -help deletesolution)
The application template is now unavailable to SharePoint sites and the solution has been removed from the solution store.