powershell 通过PowerShell计算SharePoint列表中所有项目的版本。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 通过PowerShell计算SharePoint列表中所有项目的版本。相关的知识,希望对你有一定的参考价值。

$web = Get-SPWeb https://xxxx
$list = $web.Lists["109 Projects"]
$Total = 0

foreach($item in $list.Items)
{
	$cnt = $item.Versions.Count
	if($cnt -ge 100){
	write-host "$item.Name Versions: $cnt"
	}
	$Total += $cnt
}
write-host $Total

以上是关于powershell 通过PowerShell计算SharePoint列表中所有项目的版本。的主要内容,如果未能解决你的问题,请参考以下文章

如何通过 powershell 或 cmd 计算屏幕数量

powershell 通过powshell获取计算机名称

在计算机启动时运行 powershell 网络脚本将失败

通过 Powershell 对多个 AD 对象属性进行排序

如何通过Powershell在域计算机上查询Active Directory而不在客户端计算机上安装RSAT工具

通过 Powershell 远程 TFS 签入