zoukankan      html  css  js  c++  java
  • 深入浅出SharePoint——使用PowerShell导出站点的导航

    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    function ExportQuickLaunchNavigation(
        [Microsoft.SharePoint.SPWeb] $web)
    {
        $xml = [xml] "<QuickLaunch/>"
    
        foreach ($navigationNode in $web.Navigation.QuickLaunch)
        {
            AddNavigationElement $navigationNode $xml.DocumentElement
        }
    
        return $xml
    }
    
    function AddNavigationElement(
        [Microsoft.SharePoint.Navigation.SPNavigationNode] $navigationNode,
        [System.Xml.XmlElement] $parentElement)
    {
        $navElement = $parentElement.OwnerDocument.CreateElement("NavigationNode")
    
        $parentElement.AppendChild($navElement) > $null
    
        $navElement.SetAttribute("title", $navigationNode.Title)
        $navElement.SetAttribute("url", $navigationNode.Url)
    
        foreach ($childNode in $navigationNode.Children)
        {
            AddNavigationElement $childNode $navElement
        }
    }
    
    $webUrl="http://cris-moss/sites/Mockup/";
    $null = [System.Reflection.Assembly]::LoadFrom("C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\ISAPI\Microsoft.SharePoint.dll")
    $site =  New-Object -TypeName "Microsoft.SharePoint.SPSite" -ArgumentList "$webUrl";
    $web = $site.OpenWeb()
    
    $navigationXml = ExportQuickLaunchNavigation($web)
    
    $navigationXml.OuterXml
    

      

  • 相关阅读:
    zjoj1706: [usaco2007 Nov]relays 奶牛接力跑
    bzoj1784: [Usaco2010 Jan]island
    [PKUSC2018]真实排名
    [PKUSC2018]主斗地
    回来了
    P4887 第十四分块(前体)
    P3604 美好的每一天
    Codeforces Round #660(CF1388)
    BOI2020 DAY2
    BZOJ 5281--[Usaco2018 Open]Talent Show(分数规划&单调队列&DP)
  • 原文地址:https://www.cnblogs.com/mingle/p/3010123.html
Copyright © 2011-2022 走看看