I am trying to export list items to a local folder but I only want certain items, not the complete list.Is this possible?
I have tried to iterate through the SPListCollection with the "Modified" Property but I wasn't able to get the items themselves, just the attachments.
Here is my code:
Export-SPWeb -Identity "http://myurl.com" - path "C:\Export\Lists\Announcements.cmp" -ItemUrl "/Lists/Announcements/AllItems.aspx" -Force | where ( --Here I want to filter List Items by Modified Date )