如何使用PowerShell从OneNote文档中提取标题

时间:2017-06-08 05:38:25

标签: powershell ms-office hierarchy onenote

背景 在我的工作环境中,我们拥有知识库笔记的过渡位置。它们存在于多年来一直维护的许多OneNote 2016工作簿中。我目前正在将内容更新工作委托给我们的员工,部分工作涉及将所有OneNote笔记本名称和部分名称导入到Excel层次结构管理的电子表格中。

任务:我花了很长时间在网上寻找一种简单快捷的方法,使用PowerShell将层次结构信息从OneNote导出到csv,并且在我的生活中找不到一种简单的方法。以下代码通过互联网产生共鸣,但每次我尝试运行代码时,我都会遇到错误。

$onenote = New-Object -ComObject OneNote.Application
$scope = [Microsoft.Office.Interop.OneNote.HierarchyScope]::hsPages
[ref]$xml = $null

$onenote.GetHierarchy($null, $scope, $xml)

$schema = @{one=”http://schemas.microsoft.com/office/onenote/2013/onenote”}

$xpath = “//one:Notebook/one:Section”
Select-Xml -Xml (

$xml.Value) -Namespace $schema -XPath $xpath |
foreach {
$node = $psitem.Node

$npath = Split-Path -Path $node.Path -Parent

$props = [ordered]@{
Workbook =  Split-Path -Path $npath -Leaf
Section = $node.Name
}
New-Object -TypeName PSObject -Property $props
}

错误: 我执行此代码时得到的错误如下:

类型“System.String”的值,键入“System.Xml.XmlNode”。 在行:10 char:17 + Select-Xml -Xml(

1 个答案:

答案 0 :(得分:4)

<强>解决方案: 最后,我不得不打破与Onenote应用程序建立的连接,并为OneNote 2016找到了一个可行的解决方案。我已经提供了我的解决方案,但我很想知道将来有效地操纵这些数据的任何其他方法: / p>

Function Get-OneNoteHeaders{ 

[CmdletBinding()]
Param()

Begin
{
    $onenote = New-Object -ComObject OneNote.Application
    $scope = [Microsoft.Office.Interop.OneNote.HierarchyScope]::hsPages
    [ref]$xml = $null
    $csvOutput = "c:\temp\onenote-headers.csv"
}
Process
{     
    $onenote.GetHierarchy($null, $scope, $xml)
    [xml]$result = ($xml.Value)

    Foreach($notebook in $($result.DocumentElement.Notebook)){
        Add-content -Path $csvOutput -Value "$($notebook.name)"
        Foreach($section in $($notebook.section)){
            Add-content -Path $csvOutput -Value ",$($section.name)"
            Foreach($page in $section.page){
                Add-content -Path $csvOutput -Value ",,$($page.name)"
            }
        }
    }
}
End{}
}

#Get-OneNoteHeaders