1
Vote

Add support for property exports

description

Property exports in the old ExFolders and PFDAVAdmin tools are particularly useful in scenarios where we need to find a FID or a MID. Need to investigate supporting this in MAPIFolders.

comments

bilong wrote May 21, 2014 at 8:03 AM

I've just added folder property export functionality, but it is still very beta. Example syntax:

MAPIFolders -ExportFolderProperties -PropertyList:0x67480014 -Mailbox:someone@contoso.com -Scope:Subtree

In the Documents\MAPIFolders folder, in addition to the log that is generated for every operation, this will create an ExportFolderProperties*.csv with the exported properties.

Currently, only string properties and PT_I8 properties (such as FID) are supported, just because I was trying to get this done quickly. More property types will be added before this work item is resolved.

bilong wrote May 21, 2014 at 8:18 AM

I just realized the example syntax will only export from "Top Of Information Store" on down. If you want to export the FIDs of ALL folders in the mailbox, add empty quotes to the end, like this:

MAPIFolders -ExportFolderProperties -PropertyList:0x67480014 -Mailbox:someone@contoso.com -Scope:Subtree ""

bilong wrote May 21, 2014 at 3:29 PM

Version 0.3.3.0 is up now, which includes support for exporting PT_I8, PT_LONG, PT_BOOLEAN, PT_BINARY, PT_STRING8, PT_UNICODE. This should cover most common properties.