views:

92

answers:

1

Hi Guys,

I am trying to update a bunch of items in a shared Exchange calendar, using WebDav.

What I want to do is rename events, similar to what I would do in SQL:

UPDATE appointments SET subject = 'New Name' WHERE subject = 'Old Name'

Is there a way to do this in a WebDav query?

Thanks.

A: 

you can use the BPROPPATCH method for this

Mladen Prajdic
Thanks, that's exactly what I was looking for.
Xavier Poinas