有人在中央管理网站集下创建了一个网站。我需要将其移动到其自己的集合中。
我尝试使用 Export-SPWeb 和 Import-SPWeb,但出现此错误:
Import-SPWeb : Cannot import site. The exported site is based on the template S
TS#0 but the destination site is based on the template STS#1. You can import si
tes only into sites that are based on same template as the exported site.
At line:1 char:13
+ Import-SPWeb <<<< -Identity http://***** -Path ***************
+ CategoryInfo : InvalidData: (Microsoft.Share...CmdletImportWeb:
SPCmdletImportWeb) [Import-SPWeb], SPException
+ FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletImportWe
b
我该如何解决这个问题?或者这是最好的解决方法吗?
答案1
找到答案了:
首先,STS#0 是哪个模板?
PS K:\> get-spwebtemplate "sts#0"
Name Title LocaleId Custom
---- ----- -------- ------
STS#0 Team Site 1033 False
有了这些信息,我就能用正确的模板创建一个新的集合并完成导入。