SharePoint PowerShell使用Export-SPWeb和Import-SPWeb指令来导出和导入网站

导出网站,例如:

1 Export-SPWeb -Identity http://win2012sp2013:1000/Hopewell_Portal/ -Path "C:\KenmuTemp\Test File\Temp\siteExport.cmp" -IncludeUserSecurity -IncludeVersions all -Force
PS:“-Identity”可以不写

导入网站,例如:

1 //将 siteExport.cmp的内容导入到网站 http://site,使用 siteExport.cmp文件的内容覆盖网站上已进行版本管理的内容

2 Import-SPWeb http://site –Path siteExport.cmp –UpdateVersions Overwrite

 

你可能感兴趣的:(SharePoint)