我有一个PowerShell脚本,可以将所有列表中的所有项目和站点中所有文档库中的所有文件输出到CSV文件:
function Get-DocInventory([string]$siteUrl) {
$web = Get-SPWeb "http://contoso.com/sites/Depts/HTG"
foreach ($list in $web.Lists) {
foreach ($item in $list.Items) {
foreach($version in $item.Versions){
$data = @{
"Version" = $version.VersionLabel
"List Name" = $list.Title
"Created By" = $item["Author"]
"Created Date" = $item["Created"]
"Modified By" = $item["Editor"]
"Modified Date" = $item["Modified"]
"Item Name" = $item.File.Name
"URL"=$web.Site.MakeFullUrl("$($web.ServerRelativeUrl.TrimEnd('/'))/$($item.Url)");
}
New-Object PSObject -Property $data | Select "List Name", "Item Name", "Version", "Created By", "Created Date", "Modified By", "Modified Date", "URL"
}
}
$web.Dispose();
}
}
Get-DocInventory | Export-Csv -NoTypeInformation -Path C:\NewOutput.csv
以下是此脚本输出内容的示例:
在“脚本示例输出”中显示的输出中,Arc Items,Archived Stuff和Boats是列表的名称。另一方面,Content Affiliate和Cross References是文档库的名称。我的问题是脚本只输出文档库中的项目名称而不是列表。我应该添加什么行才能从列表中输出项目名称?换句话说,如何显示列表中包含的项目的名称?有人可以帮忙吗?
答案 0 :(得分:1)
我已经弄清楚了。修改此行:
"Item Name" = $item.File.Name
要:
"Item Name" = $item.Name
诀窍。