zoukankan      html  css  js  c++  java
  • Sharepoint 2007 定制Feature和卸载Feature

    在moss 2007的定制开发中很多功能都可以通过feature完成,好处就是feature能在moss的所有网站中使用。为了方便我们进行feature的部署和卸载,通过脚本来完成部署和卸载。

    部署和卸载脚本如下,需要进行适当的修改。

    部署脚本:

    echo Copying the feature...
    echo.
    rd /s /q "%CommonProgramFiles%\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\CheSequential"
    mkdir "%CommonProgramFiles%\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\CheSequential"

    copy /Y feature.xml "%CommonProgramFiles%\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\CheSequential\"
    copy /Y workflow.xml "%CommonProgramFiles%\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\CheSequential\"
    xcopy /s /Y *.xsn "%programfiles%\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\CheSequential\"

    echo.
    echo Adding assemblies to the GAC...
    echo.
    "c:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\gacutil.exe" -uf ITMS.CheSequential
    "c:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\gacutil.exe" -if bin\Debug\ITMS.CheSequential.dll

    echo.
    echo Activating the feature...
    echo.
    pushd %programfiles%\common files\microsoft shared\web server extensions\12\bin
    stsadm -o deactivatefeature -filename CheSequential\feature.xml -url http://ms-zy:9002
    stsadm -o uninstallfeature -filename CheSequential\feature.xml

    pause

    stsadm -o installfeature -filename CheSequential\feature.xml -force
    stsadm -o activatefeature -filename CheSequential\feature.xml -url http://ms-zy:9002

    echo Doing an iisreset...
    echo.
    popd
    iisreset

    卸载脚本:卸载完后删除对应的feature文件夹。

    echo.
    echo Adding assemblies to the GAC...
    echo.
    "c:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\gacutil.exe" -uf MySharePointWorkflow1

    echo.
    echo Activating the feature...
    echo.
    pushd %programfiles%\common files\microsoft shared\web server extensions\12\bin
    stsadm -o deactivatefeature -filename MySharePointWorkflow1\feature.xml -url http://ms-zy:9001 -force
    stsadm -o uninstallfeature -filename MySharePointWorkflow1\feature.xml -force

    echo Doing an iisreset...
    echo.
    popd
    iisreset

  • 相关阅读:
    ElasticSearch(5.5.2)在java中的使用
    ElasticSearch基础
    Linux中profile、bashrc、bash_profile之间的区别和联系
    linux上安装启动elasticsearch-5.5.1完整步骤
    linux 解压zip文件
    Ubuntu Linux 环境变量PATH设置
    sudo 用户添加
    SecureCRT5 中文乱码
    韩美林的养生秘诀——“懒人操”
    实验二:线性表的实验【物联网1132-11】
  • 原文地址:https://www.cnblogs.com/ahghy/p/2087403.html
Copyright © 2011-2022 走看看