• 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

  • 相关阅读:
    php openssl 加密解密
    PHP中进制之间的互相转换
    零基础学习FFMPEG
    git 强制更新本地和强制提交覆盖
    mysql 不常用备忘
    mysql <=> null 问题
    GD库imagettftext中文乱码的问题
    flex布局设置width无效
    下拉菜单css
    swagger:API在线文档自动生成框架
  • 原文地址:https://www.cnblogs.com/ahghy/p/2087403.html
Copyright © 2020-2023  润新知