powershell SharePoint列表项中的随机日期
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell SharePoint列表项中的随机日期相关的知识,希望对你有一定的参考价值。
$site = Get-SPweb "http://spsvde001/sites/RDR"
[DateTime]$theMin = "1/1/2008"
[DateTime]$theMax = [DateTime]::Now
$mList=$site.Lists["RDR"]
$i = 0
foreach($f in $mList.Items)
{
$f["ID]
$theRandomGen = new-object random
$theRandomTicks = [Convert]::ToInt64( ($theMax.ticks * 1.0 - $theMin.Ticks * 1.0 ) * $theRandomGen.NextDouble() + $theMin.Ticks * 1.0 )
$f["DeficiencyDate"] = new-object DateTime($theRandomTicks)
$f.Update()
}
以上是关于powershell SharePoint列表项中的随机日期的主要内容,如果未能解决你的问题,请参考以下文章
powershell SharePoint Powershell添加列表项
powershell SharePoint PowerShell遍历所有列表并将其作为列表模板备份。
更新列表视图 SharePoint PowerShell
powershell 获取sharepoint列表字段列表
SharePoint PowerShell 从CSV文件导入数据到列表
powershell 通过PowerShell计算SharePoint列表中所有项目的版本。