[存储记录]SharePoint循环删除任务
Posted 王宝会
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[存储记录]SharePoint循环删除任务相关的知识,希望对你有一定的参考价值。
$spWeb =get-spweb http://.....
$spList =$spWeb.GetListFromUrl("http://..../Lists/Tasks/AllItems.aspx")
$spQuery = New-Object Microsoft.SharePoint.SPQuery
$camlQuery = ‘<Where><Leq><FieldRef Name="Created" /><Value Type="DateTime">2017-04-18</Value></Leq></Where>‘
$spQuery.Query = $camlQuery
$spListItem = $spList.GetItems($spQuery)
$spListItem[0].ID
$spListItem[0].UniqueId
$spListItem[0].Title
Write-Host $spListItem.Count
$spListItem|%{$spList.GetItemById($_.Id).Delete()}
$spList.Update()
以上是关于[存储记录]SharePoint循环删除任务的主要内容,如果未能解决你的问题,请参考以下文章
sharepoint 用户直接被从网站集删除后,删除记录的查询