Hello,
I found a way to do this via powershell, still need to work on grabbing all the lists items that have 10 or more versions but this is the basic script for those that might be interested in grabbing all document libraries that have versioning enabled
and lists the number of versions.
$site = Get-SPSite http://portal/site
$webs = $site.AllWebs
foreach ($web in $webs)
{
foreach ($list in $web.Lists)
{
if($list.EnableVersioning)
{
$item=$list.Items[0]
foreach($version in $item.Versions)
{
Write-Host "Documen Library:" $list.Title "-" "Document:" $item.Title $version.VersionLabel
}
}
}
}
$web.Dispose()
$site.Dispose()
v/r JShidell