我正在针对 Lotus Notes 服务器上的视图运行 Powershell 脚本。它目前以下列方式产生输出:
UserID|Name|Internet Address
user1|John Smith|john.smith@mycompany.com
user2|Joe Smith|joe.smith@mycompany.com
user3|Bill Smith|bill.smith@mycompany.com
注意:标题行当前不是输出的一部分,仅出于提供信息的目的而显示。
输出当前转到一个文本文件,但我现在需要将其更改为 XML。使用以下 Powershell 脚本提取数据。
$session = New-Object -ComObject lotus.notessession
$session.initialize()
$session.notesversion
if (Test-Path -Path "c:\myfile.txt") {
Remove-Item -Path "c:\myfile.txt"
}
$db = $session.GetDatabase("lotusServer","names.nsf")
$db.title
$view = $db.GetView('People')
Write-Host "View read : " $view.Name
# Show number of documents
$nbrDocs = $view.AllEntries.Count
Write-Host "Num of Docs : " $nbrDocs
# Get First Document in the View
$doc = $view.GetFirstDocument()
#Read fields for current document
$delim = "|"
$i = 0
while ($doc -ne $null) {
$internetAddress = [string] $doc.GetItemValue("InternetAddress")
$companyname = [string] $doc.GetItemValue("CompanyName")
$fullname = [string] $doc.GetItemValue("FullName")
if ( $companyname -eq "My Company") {
$i = $i + 1
# format the full name field
$fullname = $fullname.Substring(3)
$s = $fullname
$c1 = $s.LastIndexOf(" ")
$c2 = $s.IndexOf("/")
$name = $s.Substring(0,$c2)
$userID = $s.Substring($c1+1)
$zOut = $userID + $delim + $name + $delim + $internetAddress
Write-Host $zOut
Write-Output $zOut| out-file "c:\myfile.txt" -append -width 2000
} #end if
$doc = $view.GetNextDocument($doc)
} #end while
我希望输出现在采用类似于以下内容的 XML 格式:
<?xml version="1.0" ?>
<Company>
<UserID>user1
<Name>John Smith</Name>
<InternetAddress>john.smith@mycompany.com</InternetAddress>
</UserID>
</Company>
数据不应该有任何重复,并且(在某些时候)输出中可能有多家公司,但总体结构与上述示例不会有太大差异(名称和 InternetAddress 是 UserID 的子项)。
但是,我现在通过数据解析的方式(而 $doc -ne $null)我一次只能看到一行。我发现的示例展示了如何导出/写入 XML 一次执行,而不是一次执行一行。输出 XML 将在用于其他地方之前进行验证。我可以将此脚本的输出写入 XML 文件吗?如果可以,怎么写?
任何想法/建议表示赞赏。
谢谢!