SharePoint 2010 将网站字段导出到 XML 文件



我刚刚开始使用SharePoint 2010(你可以说有点晚了!)我通过GUI创建了一个列表,就像我通常使用SharePoint 2007一样。然后,我将使用 Gary la pointe stsadm 扩展来提取字段 XML,并将它们放入 Visual Studio 中的功能中。

我想知道这还能做到吗!我在 2010 stsadm 命令中找不到 gl-Exportsitecolumns 命令!

有电源外壳替代品吗?

任何帮助或指导将不胜感激。

干杯 特鲁兹

我不知道Powershell中的这种替代方案。但是非常简单的解决方案可以是这段代码:

$w = Get-SPWeb http://localhost/subweb
$w.Fields | select SchemaXml # option 1: prints all xml to console
$w.Fields | select schemaxmlwithresourcetokens # option 2: the same, but with resource tokens
$w.Fields | %{ $_.schemaxml } | out-file c:tempfields.xml -encoding unicode #option 3: saves output to text file

powershell中的替代方案可以在这里找到:export-and-importcreate-site-content.html作者:Phil Childs

$sourceWeb = Get-SPWeb http://portal
$xmlFilePath = "C:InstallScript-SiteContentTypes.xml"
#Create Export File
New-Item $xmlFilePath -type file -force
#Export Content Types to XML file
Add-Content $xmlFilePath "<?xml version=`"1.0`" encoding=`"utf-8`"?>"
Add-Content $xmlFilePath "`n<ContentTypes>"
$sourceWeb.ContentTypes | ForEach-Object {
    if ($_.Group -eq "Custom Content Types") {
        Add-Content $xmlFilePath $_.SchemaXml
    }
}
Add-Content $xmlFilePath "</ContentTypes>"
$sourceWeb.Dispose()

相关内容

  • 没有找到相关文章

最新更新