Sharepoint Powershell with CAML <nativehr> 0x80070057 </nativehr>

时间:2017-02-23 02:51:07

标签: powershell sharepoint caml

我正在尝试解决此错误查找其他帖子,但我无法弄清楚我做错了什么。

在Sharepoint 2010的PowerShell中,我想使用下一个CAML查询删除列表中的所有项目。

$query.Query = @'
    <Where>
      <Eq>
        <FieldRef Name="Mes"/>
        <Value Type="Text">2017/01</Value>
      </Eq>
    </Where>
    '@

$items = $list.GetItems($query)
$items

这给我以下错误

Excepción al intentar enumerar la colección "<nativehr>0x80070057</nativehr><nativestack></nativestack>".
En línea: 1 Carácter: 7
+ $items <<<<
    + CategoryInfo          : NotSpecified: (:) [], ExtendedTypeSystemException
    + FullyQualifiedErrorId : ExceptionInGetEnumerator

[Mes]是一个带文本输出的计算列。

我确定我做错了。你能帮帮我吗?

0 个答案:

没有答案