常用SharePoint 命令
卸载解决方案
UnInstall-SPSolution -Identity abcd.wsp -AllWebApplication
移除解决方案
Remove-SPSolution -Identity abcd.wsp
添加解决方案
Add-SPSolution D:\directory\abcd.wsp
安装解决方案
Install-SPSolution -Identity abcd.wsp -WebApplication http://url/ -GACDeployment
备份站点集
Backup-SPSite -Identity http://url/ -Path D:\abcd.bak -Force
还原站点集
Restore-SPSite -Identity http://url/ -Path D:\abcd.bak -Force