我有一个PowerShell脚本,可以将站点(网站)范围内所有库中的所有文档输出到下面列出的CSV文件中:
function Get-DocInventory([string]$siteUrl) {
$site = New-Object Microsoft.SharePoint.SPSite $siteUrl
$web = Get-SPWeb "http://contoso.com/sites/Depts/HTG"
foreach ($list in $web.Lists) {
if ($list.BaseType -eq “DocumentLibrary”) {
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();
}
$site.Dispose()
}
}
Get-DocInventory | Export-Csv -NoTypeInformation -Path C:\NewOutput.csv
我还有最后一件事我需要做的就是,除了输出所有库中的所有文档之外,我还需要添加脚本以从同一网站http://contoso.com/sites/Deptss/HTG中列出所有列表中的所有项目。上面的脚本。有人可以告诉我该怎么做?我真的需要别人的帮助。
注意:我知道要迭代所有列表,我可以更改下面的行,它最初遍历文档库:
if ($list.BaseType -eq “DocumentLibrary”)
到下面这个迭代列表:
if ($list.BaseType -eq “GenericList”)
我想循环遍历文档库和列表。我该怎么做?
答案 0 :(得分:2)
正确识别后,这行代码中的条件导致脚本只循环遍历文档库:
if ($list.BaseType -eq “DocumentLibrary”)
要遍历所有列表而不管类型,只需完全删除if
子句(及其相应的开/关括号)。