标签:powershell stsadm 部署 解决方案
stsadm -o addsolution –filename c:\bin\CustomerSiteSearch.wsp stsadm -o deploysolution –name CustomerSiteSearch.wsp -url http://[ServerName] -allowgacdeployment -force –immediate stsadm -o activatefeature –name customersitesearch_feature1 -url http://[ServerName] -force
stsadm -o retractsolution -name solutionName.wsp -immediate
stsadm -o deletesolution -name solutionName.wsp
Add-SPSolution c:\bin\CustomerSiteSearch.wsp Install-SPSolution -Identity CustomerSiteSearch.wsp -AllWebApplications -GACDeployment Enable-SPFeature CustomerSiteSearch_feature1 -url http://[ServerName]/ –force
Uninstall-SPSolution -identity solutionName.wsp
Remove-SPSolution -identity solutionName.wsp关于PowerShell:
部署解决方案----STSADM和PowerShell,布布扣,bubuko.com
标签:powershell stsadm 部署 解决方案
原文地址:http://blog.csdn.net/crazygolf/article/details/37903619